diff --git a/src/modules/links_db.fnl b/src/modules/links_db.fnl index 2f5f33c..0bb451d 100644 --- a/src/modules/links_db.fnl +++ b/src/modules/links_db.fnl @@ -48,7 +48,7 @@ ORDER BY created DESC") ;; Ensure 'db/' folder exists (when (not (fs_utils.dir_exists? "db")) - (print "🚨 ERROR: No 'db/' folder to place SQLite database files in.\n❓ Did you forget to mount a volume at '/simple-shortener/db'?") + (print "🚨 ERROR: No folder to place SQLite database files in.\n❓ Did you forget to mount a volume at '/simple-shortener/db'?") (os.exit -1)) ;; ---------------------------------- ;; diff --git a/src/modules/sessions_db.fnl b/src/modules/sessions_db.fnl index a9e6f0c..f43c750 100644 --- a/src/modules/sessions_db.fnl +++ b/src/modules/sessions_db.fnl @@ -43,7 +43,7 @@ OR last_active <= strftime('%s', 'now', '-" config.session_max_idle_length_hours ;; Ensure 'db/' folder exists (when (not (fs_utils.dir_exists? "db")) - (print "🚨 ERROR: No 'db/' folder to place SQLite database files in.\n❓ Did you forget to mount a volume at '/simple-shortener/db'?") + (print "🚨 ERROR: No folder to place SQLite database files in.\n❓ Did you forget to mount a volume at '/simple-shortener/db'?") (os.exit -1)) ;; ---------------------------------- ;;