We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef8e38e + 8a36ea6 commit 9ef3fccCopy full SHA for 9ef3fcc
src/linux/Packaging.Linux/build.sh
@@ -45,6 +45,9 @@ fi
45
OUTDIR="$INSTALLER_OUT/$CONFIGURATION"
46
PAYLOAD="$OUTDIR/payload"
47
48
+# Lay out payload
49
+"$INSTALLER_SRC/layout.sh" --configuration="$CONFIGURATION" || exit 1
50
+
51
if [ $INSTALL_FROM_SOURCE = true ]; then
52
INSTALL_LOCATION="/usr/local"
53
mkdir -p "$INSTALL_LOCATION"
@@ -74,8 +77,7 @@ if [ $INSTALL_FROM_SOURCE = true ]; then
74
77
75
78
echo "Install complete."
76
79
else
- # Layout and pack
- "$INSTALLER_SRC/layout.sh" --configuration="$CONFIGURATION" --output="$PAYLOAD" --symbol-output="$" || exit 1
80
+ # Pack
81
"$INSTALLER_SRC/pack.sh" --configuration="$CONFIGURATION" --payload="$PAYLOAD" --version="$VERSION" || exit 1
82
fi
83
0 commit comments