mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
189 B
12 lines
189 B
2 years ago
|
#!/bin/sh
|
||
|
# eg.1 : sh build-image.sh
|
||
|
# eg.2, set tags: sh build-image.sh 'embed go_json'
|
||
|
|
||
|
TAGS='embed go_json'
|
||
|
|
||
|
if [ -n "$1" ]; then
|
||
|
TAGS="$1"
|
||
|
fi
|
||
|
|
||
|
make release CGO_ENABLED=0 TAGS="$TAGS"
|