aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-13 10:39:22 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-13 10:39:22 +0100
commit9b32145fe85e277160d54a8c6411b578464e91f8 (patch)
tree7f3852eea2aa1d3556b8cc670f9e8e52b95a8765
parent0cecee141d8b1a00d89967a1c9afa90839b23b98 (diff)
Rename
-rwxr-xr-xjobbylogger.sh (renamed from jobblylogger.sh)2
1 files changed, 1 insertions, 1 deletions
diff --git a/jobblylogger.sh b/jobbylogger.sh
index b3e2b5c..bf65f72 100755
--- a/jobblylogger.sh
+++ b/jobbylogger.sh
@@ -14,7 +14,7 @@ comment="$2"
formatted_date=$(date -d "$date" +"%Y-%m-%d %H:%M:%S")
# SQLite command to insert the record
-sqlite3 ~/Documents/Notes/jobblylogger.db "INSERT INTO jobbies (date, comments) VALUES ('$formatted_date', '$comment');"
+sqlite3 ~/Documents/Notes/jobbylogger.db "INSERT INTO jobbies (date, comments) VALUES ('$formatted_date', '$comment');"
# Check if the insertion was successful
if [ $? -eq 0 ]; then