Skip to content

Commit 535a520

Browse files
authored
Update docker-entrypoint.sh
added the ability to build w/o arguments
1 parent 388a046 commit 535a520

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docker-entrypoint.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ set -e
33

44
if [[ $# -eq 0 ]]; then
55
make clean && make release
6+
elif [[ $1 == "default" ]]; then
7+
make
68
else
79
# shellcheck disable=SC2068
810
make "$@"

0 commit comments

Comments
 (0)