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 27b43f6 commit 3cc654eCopy full SHA for 3cc654e
ci-build.sh
@@ -9,10 +9,7 @@
9
10
dir="$(dirname "$0")"
11
12
-MACOS=
13
-case "$(uname -s)" in
14
- Darwin) MACOS=1;;
15
-esac
+platform=$(uname -s)
16
17
success=0
18
checkSuccess() {
@@ -188,7 +185,7 @@ EOL
188
185
# --== GPG SETUP ==--
189
186
190
187
# Install GPG on macOS
191
- if [ "$MACOS" ]; then
+ if [ "$platform" = Darwin ]; then
192
HOMEBREW_NO_AUTO_UPDATE=1 brew install gnupg2
193
fi
194
0 commit comments