nix: drop KEYSTORE_PATH from extra-sandbox-paths
This is no longer necessary as we sign APKs in a separate step using the `scripts/sign-android.sh` script, and this causes issues for F-Droid builds. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
b47fdc6698
commit
d97a7fb325
|
@ -45,9 +45,9 @@ if [[ -n "${OPENSEA_API_KEY}" ]]; then append_env_export 'OPENSEA_API_KEY'; fi
|
||||||
|
|
||||||
# If no secrets were passed there's no need to pass the 'secretsFile'.
|
# If no secrets were passed there's no need to pass the 'secretsFile'.
|
||||||
if [[ -s "${SECRETS_FILE_PATH}" ]]; then
|
if [[ -s "${SECRETS_FILE_PATH}" ]]; then
|
||||||
|
nixOpts+=("--option" "extra-sandbox-paths" "${SECRETS_FILE_PATH}")
|
||||||
nixOpts+=("--argstr" "secretsFile" "${SECRETS_FILE_PATH}")
|
nixOpts+=("--argstr" "secretsFile" "${SECRETS_FILE_PATH}")
|
||||||
fi
|
fi
|
||||||
nixOpts+=("--option" "extra-sandbox-paths" "${KEYSTORE_PATH} ${SECRETS_FILE_PATH}")
|
|
||||||
|
|
||||||
# Used by Clojure at compile time to include JS modules
|
# Used by Clojure at compile time to include JS modules
|
||||||
nixOpts+=("--argstr" "buildEnv" "$(must_get_env BUILD_ENV)")
|
nixOpts+=("--argstr" "buildEnv" "$(must_get_env BUILD_ENV)")
|
||||||
|
|
Loading…
Reference in New Issue