diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-08-27T15·01+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-08-27T15·01+0200 |
commit | 73728874ab89d77bce3b103acb239d4d5eec14b1 (patch) | |
tree | 9a48bb4fcdf71a4ff9eb8f80d949aee67b8ab18e | |
parent | 45b3dc325a1d49f86182195cf22fc96ddc05c644 (diff) |
Hopefully fix post-hook test on macOS
https://hydra.nixos.org/build/99262744
-rwxr-xr-x | tests/push-to-store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/push-to-store.sh b/tests/push-to-store.sh index d97eb095dd74..6aadb916ba0b 100755 --- a/tests/push-to-store.sh +++ b/tests/push-to-store.sh @@ -1,4 +1,4 @@ #!/bin/sh echo Pushing "$@" to "$REMOTE_STORE" -echo -n "$OUT_PATHS" | xargs -d: nix copy --to "$REMOTE_STORE" --no-require-sigs +printf "%s" "$OUT_PATHS" | xargs -d: nix copy --to "$REMOTE_STORE" --no-require-sigs |