11 lines
204 B
Bash
Executable file
11 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "here"
|
|
set -eu
|
|
set -f # disable globbing
|
|
export IFS=' '
|
|
|
|
echo "Uploading paths" $OUT_PATHS
|
|
|
|
|
|
#exec /nix/var/nix/profiles/default/bin/nix copy --to "https://nix-cache.skynet.ie" $OUT_PATHS
|