summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNing Sun2022-07-22 15:40:02 +0800
committerNing Sun2022-07-22 15:40:02 +0800
commit9beb5cb0a8b72cec79274182e20dc84e96c61ed5 (patch)
tree076c7436c848192b23e4f3a7a144cebe7aea3b8b
parent4a32aa3902d37f501056eac066bee6020c7a4743 (diff)
downloadaur-9beb5cb0a8b72cec79274182e20dc84e96c61ed5.tar.gz
fix log dir creation
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rwxr-xr-xquestdb.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6b45db5af87f..d27cedc3fae8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = questdb
pkgdesc = Fast timeseries database
pkgver = 6.4.3
- pkgrel = 2
+ pkgrel = 3
url = https://questdb.io
install = questdb.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index e3be1a234964..568b52d6c480 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=questdb
pkgver=6.4.3
-pkgrel=2
+pkgrel=3
pkgdesc='Fast timeseries database'
arch=('any')
url='https://questdb.io'
diff --git a/questdb.sh b/questdb.sh
index 40cbcd4c5d57..19ac213725c5 100755
--- a/questdb.sh
+++ b/questdb.sh
@@ -174,7 +174,7 @@ function start {
fi
QDB_LOG=/var/log/questdb/
- mkdir -p QDB_LOG
+ mkdir -p ${QDB_LOG}
JAVA_LIB="$BASE/questdb.jar"