From a20770314e4b5e237b9af76bad1f9d3566377200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Theilgaard?= Date: Wed, 25 Aug 2021 11:36:43 +0200 Subject: [PATCH] =?UTF-8?q?`extractLabels.sh`should=20work=20from=20?= =?UTF-8?q?=E2=80=9Cutils=E2=80=9D=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And added description of function of script. --- utils/extractLabels.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/extractLabels.sh b/utils/extractLabels.sh index 264acce..332332a 100755 --- a/utils/extractLabels.sh +++ b/utils/extractLabels.sh @@ -1,9 +1,12 @@ #!/bin/zsh +# This script will create individual labels files from the original Installomator.sh script +# Only for internal use + label_re='^([a-z0-9\_-]*)(\)|\|\\)$' endlabel_re='^( |\t);;$' -label_dir="fragments/labels" +label_dir="../fragments/labels" IFS=$'\n' @@ -24,4 +27,4 @@ while read -r line; do current_label="" fi -done <./Installomator.sh +done <../Installomator.sh