Compare commits

..

No commits in common. "353d1bb7814d58b8d6843c0230a8f9bfe083268a" and "ca7a3eeb97bdd5775bb0b3ee9b041fc71a68d9b1" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ function usage() {
msgln "USAGE:" msgln "USAGE:"
#msgln " ${prog} <program-name> <program-version> <os>/<platform>..." #msgln " ${prog} <program-name> <program-version> <os>/<platform>..."
msgln " ${prog} <os>/<platform>..." msgln " ${prog} <os>/<platform>..."
msgln " ${prog} --local Build the local exec" msgln " ${prog} --dev Build the local exec"
msgln " ${prog} --init Create the resource file in the current directory" msgln " ${prog} --init Create the resource file in the current directory"
msgln msgln
if [ -r "${RESOURCE_FILE}" ]; then if [ -r "${RESOURCE_FILE}" ]; then
@ -197,7 +197,7 @@ eot
## -- MAIN -- ## ## -- MAIN -- ##
createVersionSource createVersionSource
if [ "${1}" == "--local" ]; then if [ "${1}" == "--dev" ]; then
buildLocal buildLocal
exit exit
fi fi

View File

@ -9,4 +9,4 @@ PKG_BRANCH=main
for pkg in $(grep -o "${PKG_PATTERN}" go.mod); do for pkg in $(grep -o "${PKG_PATTERN}" go.mod); do
go get "${pkg}@${PKG_BRANCH}" go get "${pkg}@${PKG_BRANCH}"
done done
./build.bash --local go build