mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
18 lines
295 B
Bash
18 lines
295 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
ROOT_DIR=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
bunx pkl project package $ROOT_DIR/pkl/*/
|
||
|
|
||
|
for dir in .out/*/; do
|
||
|
folder=$(basename "$dir")
|
||
|
rclone copy "$dir" "r2:pkljar/$folder"
|
||
|
done
|
||
|
|
||
|
rm -rf .out
|
||
|
|
||
|
rclone copy $ROOT_DIR/static "r2:nebula"
|
||
|
rm -rf $ROOT_DIR/static
|