Skip to content

Commit

Permalink
WIP: drop --impure
Browse files Browse the repository at this point in the history
  • Loading branch information
t184256 committed Aug 7, 2024
1 parent 7b8e719 commit 8f536ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nix-on-droid/nix-on-droid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function nixActivationPackage() {
--extra-experimental-features nix-command
"${PASSTHROUGH_OPTS[@]}")
if [[ -n "${FLAKE_CONFIG_URI}" ]]; then
extraArgs+=(--impure "${FLAKE_CONFIG_URI}.activationPackage")
extraArgs+=("${FLAKE_CONFIG_URI}.activationPackage")
else
extraArgs+=(--file "<nix-on-droid/modules>" activationPackage)
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ EOF
fi

log "building $arch bootstrapZip..."
BOOTSTRAP_ZIP="$(nix build --no-link --print-out-paths --impure ".#bootstrapZip-${arch}")"
BOOTSTRAP_ZIP="$(nix build --no-link --print-out-paths ".#bootstrapZip-${arch}")"
UPLOADS+=($BOOTSTRAP_ZIP/bootstrap-$arch.zip)
done

Expand Down

0 comments on commit 8f536ce

Please sign in to comment.