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.
1 parent 0e01e73 commit 6482c09Copy full SHA for 6482c09
frontend/scripts/linux_distribution/deb/build_deb.sh
@@ -5,10 +5,10 @@ VERSION=$2
5
PACKAGE_NAME=$3
6
ARCHITECTURE=$4
7
8
-if [-z $ARCHITECTURE] || ["$ARCHITECTURE" = "amd64"] ; then
+if [ -z "$ARCHITECTURE" ] || [ "$ARCHITECTURE" = "amd64" ]; then
9
ARCHITECTURE=amd64
10
ALT_ARCHITECTURE=arm64
11
-elif ["$ARCHITECTURE" = "arm64"]
+elif [ "$ARCHITECTURE" = "arm64" ]; then
12
ALT_ARCHITECTURE=amd64
13
else
14
echo "Supported architectures are only amd64 and arm64."
0 commit comments