8 lines
128 B
Bash
8 lines
128 B
Bash
#!/bin/sh
|
|
set -eu
|
|
set -f
|
|
|
|
export IFS=' '
|
|
echo "Uploading paths" $OUT_PATHS
|
|
exec nix copy --to "ssh://localhost:5000" $OUT_PATHS
|