Use printf instead of echo
This commit is contained in:
parent
b55fcf1f55
commit
8dfdbec90a
2 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ GRAPHDB_PASSWORD="$3"
|
|||
echo "GRAPHDB_PASSWORD=$GRAPHDB_PASSWORD"
|
||||
shift 3
|
||||
|
||||
GRAPHDB_HEADER="$(echo "$GRAPHDB_USER:$GRAPHDB_PASSWORD" | base64 -w 0)"
|
||||
GRAPHDB_HEADER="$(printf "%s:%s" "$GRAPHDB_USER" "$GRAPHDB_PASSWORD" | base64 -w 0)"
|
||||
|
||||
DRUPAL_USER="$1"
|
||||
echo "DRUPAL_USER=$DRUPAL_USER"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue