From afb471c720d5ac903ce72ec0ec8495ef161d3e4e Mon Sep 17 00:00:00 2001 From: Lauren Kaviak Date: Mon, 15 Jun 2026 22:17:40 -0500 Subject: [PATCH] git ignore, fix option on command line --- .gitignore | 2 ++ app.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39c42b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +creds/* +vault/* \ No newline at end of file diff --git a/app.sh b/app.sh index c583442..7d479c2 100755 --- a/app.sh +++ b/app.sh @@ -16,7 +16,7 @@ else fi if [ $WATCH = true ]; then - ob sync --watch --path "$SYNC_FOLDER"; + ob sync --continuous --path "$SYNC_FOLDER"; else ob sync --path "$SYNC_FOLDER"; fi \ No newline at end of file