Skip to content

Commit

Permalink
github actions; fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Dec 2, 2023
1 parent e4545a1 commit 1205ffc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# image build script

cd $(dirname $0) && set -xe
cd "$(dirname "$0")" && set -xe

DOCKERNAME=automon
DOCKERTAG=$(git describe --tags)
Expand Down
2 changes: 1 addition & 1 deletion docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# image build script

cd $(dirname $0) && set -xe
cd "$(dirname "$0")" && set -xe

DOCKERNAME=automon
/bin/bash build.sh && docker run --rm -it $DOCKERNAME "$@"
2 changes: 1 addition & 1 deletion docker/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# image build script

cd $(dirname $0) && set -xe
cd "$(dirname "$0")" && set -xe

DOCKERNAME=automon
/bin/bash build.sh && docker run --rm $DOCKERNAME test "$@"

0 comments on commit 1205ffc

Please sign in to comment.