summarylogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorLeon2020-03-26 00:57:21 +0100
committerLeon2020-03-26 00:57:21 +0100
commitf20f9385ceb7cc7f5b5414c1a265e385aa201ff7 (patch)
tree42b500570cc45d8dc4b68d460849257ceb0dc9d2 /install.sh
parent98dafcbddee239bf789ea9d94864b8fd76b19d5b (diff)
downloadaur-f20f9385ceb7cc7f5b5414c1a265e385aa201ff7.tar.gz
Adding an .desktop entry and fixing some issues
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index af2598a483bd..283906872a8b 100755
--- a/install.sh
+++ b/install.sh
@@ -44,7 +44,7 @@ setup_postgres() {
select dbch in "Keep data" "Reset database"; do
case $dbch in
"Keep data" ) echo -e "${_COL_GREEN_}karaokemugen_app database will be used." ; return 0;; # TODO : maybe do some integrity checks
- "Reset database" ) sudo -u postgres -g postgres -G -- psql -c "DROP DATABASE karaokemugen_app; DROP ROLE IF EXISTS karaokemugen_app;";;
+ "Reset database" ) sudo -u postgres -g postgres -H -- psql -c "DROP DATABASE karaokemugen_app; DROP ROLE IF EXISTS karaokemugen_app;";;
esac
done
fi