1
0
Fork 0
dotfiles/home/programs/scripts/attic-system-cache

15 lines
222 B
Plaintext
Raw Permalink Normal View History

2023-04-05 08:10:31 +00:00
#!/bin/sh
set -eu
set -f # disable globbing
export IFS=' '
echo "Uploading $OUT_PATHS ..."
2023-04-05 09:39:43 +00:00
2023-07-16 22:41:03 +00:00
if /run/current-system/sw/bin/attic push nifoc-systems "$OUT_PATHS"; then
2023-04-05 09:39:43 +00:00
exit 0
else
echo "Ignoring error ..."
exit 0
fi