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 951040b commit 29e39d8Copy full SHA for 29e39d8
ci/build/build-packages.sh
@@ -8,15 +8,16 @@ main() {
8
cd "$(dirname "${0}")/../.."
9
source ./ci/lib.sh
10
11
+ # Allow us to override architecture on Linux
12
+ if [ "$#" -eq 1 ] && [ "$1" ]; then
13
+ ARCH=$1
14
+ fi
15
+
16
mkdir -p release-packages
17
18
release_archive
19
20
if [[ $OS == "linux" ]]; then
- # Allow us to override architecture on Linux
- if [ "$1" ]; then
- ARCH=$1
- fi
21
release_nfpm
22
fi
23
}
0 commit comments