From ba7edf8d02329a43cbd054fdb379805dafe9a996 Mon Sep 17 00:00:00 2001 From: Armin Briegel <1933192+scriptingosx@users.noreply.github.com> Date: Thu, 14 Oct 2021 14:49:23 +0200 Subject: [PATCH] commented a debugging echo in assemble.sh --- utils/assemble.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/assemble.sh b/utils/assemble.sh index 674ad43..016ff98 100755 --- a/utils/assemble.sh +++ b/utils/assemble.sh @@ -19,7 +19,7 @@ zparseopts -D -E -a opts r -run s -script p -pkg n -notarize h -help -labels+:=l if (( ${opts[(I)(-h|--help)]} )); then echo "usage: assemble.sh [--script|--pkg|--notarize] [-labels path/to/labels ...] [arguments...]" - echo + echo echo "builds and runs the installomator script from the fragements." echo "additional arguments are passed into the Installomator script for testing." exit @@ -68,7 +68,7 @@ labels_dir="$fragments_dir/labels" # add default labels_dir to label_paths label_paths+=$labels_dir -echo "label_paths: $label_paths" +#echo "label_paths: $label_paths" fragment_files=( header.sh version.sh functions.sh arguments.sh main.sh ) @@ -134,7 +134,7 @@ fi # build a pkg when flag is set if [[ buildPkg -eq 1 ]]; then echo "# building installer package" - + tmpfolder=$(mktemp -d) payloadfolder="${tmpfolder}/payload" @@ -185,4 +185,4 @@ if [[ $notarizePkg -eq 1 ]]; then # staple result echo "# Stapling $productpath" xcrun stapler staple "$productpath" -fi \ No newline at end of file +fi