From d115ad228bf7a56fc965836599f0f876086e7a48 Mon Sep 17 00:00:00 2001 From: sh <37271604+shumvgolove@users.noreply.github.com> Date: Fri, 23 Dec 2022 16:10:36 +0300 Subject: [PATCH] build-android: disable external repo (#1615) --- scripts/android/build-android.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/android/build-android.sh b/scripts/android/build-android.sh index 58fe3a711f..9928a07366 100755 --- a/scripts/android/build-android.sh +++ b/scripts/android/build-android.sh @@ -24,7 +24,7 @@ nix_install() { } nix_setup() { - printf "sandbox = true\nmax-jobs = auto\nexperimental-features = nix-command flakes\nextra-substituters = https://cache.zw3rk.com\ntrusted-public-keys = loony-tools:pr9m4BkM/5/eSTZlkQyRt57Jz7OMBxNSUiMC4FkcNfk=" > "$tmp/nix.conf" + printf "sandbox = true\nmax-jobs = auto\nexperimental-features = nix-command flakes\n" > "$tmp/nix.conf" export NIX_CONF_DIR="$tmp/" }