Fix -z check (remove space)

This commit is contained in:
Yogesh Sharma 2023-10-18 12:42:39 -04:00
parent 5dbfa1f92e
commit 553379834d
Signed by: yogesh.sharma
GPG key ID: 47778BF1D2A81254

2
pg-env
View file

@ -18,7 +18,7 @@ if [[ -f .pg-env ]]; then
source .pg-env
fi
if [ -z " $PG_REPO_DIR" ]; then
if [ -z "$PG_REPO_DIR" ]; then
PG_REPO_DIR=${HOME}/gitwork
fi
if [ -z "$PG_REPO_NAME" ]; then