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 57949d8 commit 08ebc9cCopy full SHA for 08ebc9c
nix/scripts/build.sh
@@ -7,7 +7,8 @@ source "$SCRIPT_DIR/common.sh"
7
8
init_build_env
9
10
-cargo build -p cosmian_kms_server "$RELEASE_FLAG" "${FEATURES_FLAG[@]}"
+# shellcheck disable=SC2086
11
+cargo build -p cosmian_kms_server $RELEASE_FLAG "${FEATURES_FLAG[@]}"
12
13
COSMIAN_KMS_EXE="target/$DEBUG_OR_RELEASE/cosmian_kms"
14
nix/scripts/common.sh
@@ -150,5 +150,7 @@ prepare_openssl_staging() {
150
151
echo "OpenSSL ${variant_name} artifacts prepared at: $openssl_staging"
152
ls -la "$openssl_staging/lib64/ossl-modules/"
153
- [ -z "$FEATURES" ] && ls -la "$openssl_staging/ssl/"
+ if [ -z "$FEATURES" ]; then
154
+ ls -la "$openssl_staging/ssl/"
155
+ fi
156
}
0 commit comments