]> git.plutz.net Git - invoices/commitdiff
use _data dir
authorPaul Hänsch <paul@plutz.net>
Fri, 1 Dec 2023 12:00:17 +0000 (13:00 +0100)
committerPaul Hänsch <paul@plutz.net>
Fri, 1 Dec 2023 12:00:17 +0000 (13:00 +0100)
datetime.sh [changed mode: 0644->0755]
doclist.sh [changed mode: 0644->0755]
index.cgi
l10n.sh [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index f2feca31f6ee7230551ae7ee522d76434e7c431a..dcfe98a2a81681ef970f9b7e3a599d556894fb06 100755 (executable)
--- a/index.cgi
+++ b/index.cgi
@@ -10,18 +10,20 @@ _EXEC="$(realpath "${0%/*}")"
 . "$_EXEC/db23.sh"
 . "$_EXEC/form.sh"
 
+cd "$_DATA"
+
 SESSION_COOKIE
 
 _() { printf '%s\n' "$*"; }
 . "$_EXEC/l10n.sh"
 
 which git && [ ! -d .git ] && {
-  git init
-  mkdir -p documents/ export/
+  git -C "$_DATA" init
+  mkdir -p "$_DATA/documents/" "$_DATA/export/"
   printf 'export/
-serverkey' >.gitignore
-  git add documents/ .gitignore
-  git commit -m 'initialisation of document repo'
+serverkey' >"$_DATA/.gitignore"
+  git -C "$_DATA" add documents/ .gitignore
+  git -C "$_DATA" commit -m 'initialisation of document repo'
 } >&2
 
 [ "$REQUEST_METHOD" = POST ] && case $(POST action) in
diff --git a/l10n.sh b/l10n.sh
old mode 100644 (file)
new mode 100755 (executable)