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
|