Skip to content

Commit

Permalink
chore: update deployment example scripts (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
xzchaoo authored Feb 17, 2023
1 parent 1664cbb commit 282cdca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/examples/docker-compose/down.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e

script_dir=`dirname $0`
script_dir=`dirname $0 | xargs realpath`
cd $script_dir

env_file="$script_dir/.env"
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/docker-compose/up.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e

script_dir=`dirname $0`
script_dir=`dirname $0 | xargs realpath`
cd $script_dir

env_file="$script_dir/.env"
Expand Down

0 comments on commit 282cdca

Please sign in to comment.