12 lines
204 B
Bash
12 lines
204 B
Bash
|
#!/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
|