File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ execute_postgres_scripts(){
244
244
$CREATEDB $DB_NAME > /dev/null 2>&1
245
245
fi
246
246
247
- if [ ! " $CLUSTER_MODE " = true ]; then
247
+ if [ ! " $CLUSTER_MODE " == true ]; then
248
248
$PSQL -d " $DB_NAME " -f " $DIR /server/schema/postgresql/removetbl.sql" > /dev/null 2>&1
249
249
fi
250
250
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ install_postges() {
126
126
if ! $PSQL -lt | cut -d\| -f 1 | grep -qw $DB_NAME ; then
127
127
$CREATEDB $DB_NAME >/dev/null 2>&1
128
128
fi
129
- if [ ! $CLUSTER_MODE = true ]; then
129
+ if [ ! $CLUSTER_MODE == true ]; then
130
130
$PSQL -d $DB_NAME -f " $DIR /server/schema/postgresql/removetbl.sql" \
131
131
>/dev/null 2>&1
132
132
fi
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ execute_postgres_scripts(){
224
224
$CREATEDB $DB_NAME > /dev/null 2>&1
225
225
fi
226
226
227
- if [ ! " $CLUSTER_MODE " = true ]; then
227
+ if [ ! " $CLUSTER_MODE " == true ]; then
228
228
$PSQL -d " $DB_NAME " -f " $DIR /server/schema/postgresql/removetbl.sql" > /dev/null 2>&1
229
229
fi
230
230
You can’t perform that action at this time.
0 commit comments