1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 03:56:01 +01:00

shellcheck fix: tests/functional/nix-copy-ssh-ng.sh

This commit is contained in:
Farid Zakaria 2025-09-29 09:52:52 -07:00
parent c9fd721be9
commit ca7414cd18
2 changed files with 2 additions and 3 deletions

View file

@ -106,7 +106,6 @@
enable = true; enable = true;
excludes = [ excludes = [
# We haven't linted these files yet # We haven't linted these files yet
''^tests/functional/nix-copy-ssh-ng\.sh$''
''^tests/functional/nix-copy-ssh\.sh$'' ''^tests/functional/nix-copy-ssh\.sh$''
''^tests/functional/nix-daemon-untrusting\.sh$'' ''^tests/functional/nix-daemon-untrusting\.sh$''
''^tests/functional/nix-profile\.sh$'' ''^tests/functional/nix-profile\.sh$''

View file

@ -14,5 +14,5 @@ outPath=$(nix-build --no-out-link dependencies.nix)
nix store info --store "$remoteStore" nix store info --store "$remoteStore"
# Regression test for https://github.com/NixOS/nix/issues/6253 # Regression test for https://github.com/NixOS/nix/issues/6253
nix copy --to "$remoteStore" $outPath --no-check-sigs & nix copy --to "$remoteStore" "$outPath" --no-check-sigs &
nix copy --to "$remoteStore" $outPath --no-check-sigs nix copy --to "$remoteStore" "$outPath" --no-check-sigs