File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ case "$i" in
22
22
CONFIGURATION=" ${i#* =} "
23
23
shift # past argument=value
24
24
;;
25
+ --runtime=* )
26
+ RUNTIME=" ${i#* =} "
27
+ shift
28
+ ;;
25
29
--version=* )
26
30
VERSION=" ${i#* =} "
27
31
shift # past argument=value
@@ -45,7 +49,7 @@ COMPONENTOUT="$COMPONENTDIR/com.microsoft.gitcredentialmanager.component.pkg"
45
49
DISTOUT=" $OUTDIR /gcm-osx-x64-$VERSION .pkg"
46
50
47
51
# Layout and pack
48
- " $INSTALLER_SRC /layout.sh" --configuration=" $CONFIGURATION " --output=" $PAYLOAD " || exit 1
52
+ " $INSTALLER_SRC /layout.sh" --configuration=" $CONFIGURATION " --output=" $PAYLOAD " --runtime= " $RUNTIME " || exit 1
49
53
" $INSTALLER_SRC /pack.sh" --payload=" $PAYLOAD " --version=" $VERSION " --output=" $COMPONENTOUT " || exit 1
50
54
" $INSTALLER_SRC /dist.sh" --package-path=" $COMPONENTDIR " --version=" $VERSION " --output=" $DISTOUT " || exit 1
51
55
You can’t perform that action at this time.
0 commit comments