File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2- # MISE description="Clean install of EQL"
2+ # MISE description="Uninstall and install EQL to local postgres "
33
44set -euxo pipefail
55
6- connection_url=postgresql://${CS_DATABASE__USERNAME:- $USER } :@localhost:$CS_DATABASE__PORT /$CS_DATABASE__NAME
6+ connection_url=postgresql://${CS_DATABASE__USERNAME:- $USER } :${CS_DATABASE__PASSWORD} @localhost:$CS_DATABASE__PORT /$CS_DATABASE__NAME
77
88# Uninstall
9- PGPASSWORD= $CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt-uninstall.sql
9+ psql ${ connection_url} -f release/cipherstash-encrypt-uninstall.sql
1010
11- PGPASSWORD=$CS_DATABASE__PASSWORD psql $connection_url -f release/cipherstash-encrypt.sql
11+ # Install
12+ psql ${connection_url} -f release/cipherstash-encrypt.sql
You can’t perform that action at this time.
0 commit comments