4 Commits
0.1.0 ... 0.3.0

Author SHA1 Message Date
Build Pipeline
eeab11252f minor version increment [skip actions] 2026-06-16 03:13:46 +00:00
f10764511f add continuous variable switch
All checks were successful
Continuous Releases / build (push) Successful in 1m2s
2026-06-15 22:13:07 -05:00
Build Pipeline
fe558b630e minor version increment [skip actions] 2026-06-15 09:42:56 +00:00
Eau
b6acac8bb6 Update app.sh
All checks were successful
Continuous Releases / build (push) Successful in 53s
2026-06-15 09:42:24 +00:00
2 changed files with 8 additions and 3 deletions

9
app.sh
View File

@@ -11,7 +11,12 @@ ob login --email "$EMAIL" --password "$PASSWORD"
if [ -z ${VAULT_PASSWORD_FILE+x} ]; then if [ -z ${VAULT_PASSWORD_FILE+x} ]; then
ob sync-setup --vault "$VAULT_NAME" --path "$SYNC_FOLDER"; ob sync-setup --vault "$VAULT_NAME" --path "$SYNC_FOLDER";
else else
ob sync-setup --vault "$VAULT_NAME" --path "$SYNC_FOLDER" --password "$(< $VAULT_PASSWORD_FILE)"; VAULT_PASSWORD=$(cat $VAULT_PASSWORD_FILE);
ob sync-setup --vault "$VAULT_NAME" --path "$SYNC_FOLDER" --password "$VAULT_PASSWORD";
fi fi
ob sync --path "$SYNC_FOLDER" if [ $WATCH = true ]; then
ob sync --watch --path "$SYNC_FOLDER";
else
ob sync --path "$SYNC_FOLDER";
fi

View File

@@ -1 +1 @@
0.1.0 0.3.0