Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
simar0at committed Sep 9, 2024
1 parent 6f356d4 commit eec2d85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ install_bins() {
pushd "$BUILD_DIR/.heroku/basex/bin" >/dev/null
mv "$BUILD_DIR/.heroku/basex/data" "$BUILD_DIR/.heroku/basex/data.image"
ln -s data.image "$BUILD_DIR/.heroku/basex/data"
BASEX_admin_pw="${BASEX_admin_pw:-$(openssl rand -base64 12 | | tr -d '+/=')}"
BASEX_admin_pw="${BASEX_admin_pw:-$(openssl rand -base64 12 | tr -d '+/=')}"
echo "BASEX_admin_pw=\"$BASEX_admin_pw\"" > "$BUILD_DIR/.heroku/basex/data/credentials"
echo "CYPRESS_BASEX_admin_pw=\"$BASEX_admin_pw\"" >> "$BUILD_DIR/.heroku/basex/data/credentials"
echo "BaseX admin password is \"$BASEX_admin_pw\""
Expand Down
2 changes: 1 addition & 1 deletion bin/set-basex-admin-password
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

BUILD_DIR=${1:-}

new_admin_pw="${BASEX_admin_pw:-$(openssl rand -base64 12 | | tr -d '+/=')}"
new_admin_pw="${BASEX_admin_pw:-$(openssl rand -base64 12 | tr -d '+/=')}"
if [ -f $BUILD_DIR/.heroku/basex/data/credentials ]
then
source $BUILD_DIR/.heroku/basex/data/credentials
Expand Down

0 comments on commit eec2d85

Please sign in to comment.