mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
4a9623b129
Fixes #6446.
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
[ -n "$OUT_PATHS" ]
|
|
[ -n "$DRV_PATH" ]
|
|
|
|
echo Pushing "$OUT_PATHS" to "$REMOTE_STORE"
|
|
printf "%s" "$DRV_PATH" | xargs nix copy --to "$REMOTE_STORE" --no-require-sigs
|