Skip to content

Instantly share code, notes, and snippets.

View eSargin's full-sized avatar
🤝
riders on the storm

Emin SARGIN eSargin

🤝
riders on the storm
View GitHub Profile
#Before we can use the script, we have to make it executable with the chmod command:
#chmod +x ./go-executable-build.sh
#then we can use it ./go-executable-build.sh yourpackage
#!/usr/bin/env bash
package=$1
if [[ -z "$package" ]]; then
echo "usage: $0 <package-name>"
exit 1
fi