Compare commits

...

2 Commits

Author SHA1 Message Date
e58ba1b8d1 chore: add title 2026-03-18 18:07:15 +01:00
4ffc601723 fix: avoid mangle backslash 2026-03-11 07:22:51 +01:00
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
# screenshot
In this folder, you will find screenshots of the app.
Two kinds of screenshot here:

View File

@@ -6,13 +6,13 @@ if [ "$EUID" -ne 0 ]; then
exit 1
fi
read -s "Do you want to install PostgreSQL 18? [y/N] " INSTALL_PG
read -rp "Do you want to install PostgreSQL 18? [y/N] " INSTALL_PG
if [ "$INSTALL_PG" != "y" ]; then
echo "PostgreSQL 18 will not be installed"
exit 0
fi
read -s -p "Enter password for PostgreSQL user 'goyco': " GOYCO_PWD
read -rsp "Enter password for PostgreSQL user 'goyco': " GOYCO_PWD
echo
apt-get update