chore(build): rename binary to gosick

This commit is contained in:
Micheal Wilkinson
2026-03-19 16:33:45 +00:00
parent 1d26594010
commit 0dfacc31d4
7 changed files with 10 additions and 9 deletions

View File

@@ -4,8 +4,8 @@ set -euo pipefail
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
repo_root="$(cd "$script_dir/.." && pwd)"
if [[ -x "$repo_root/dist/homesick-go" ]]; then
exec "$repo_root/dist/homesick-go" "$@"
if [[ -x "$repo_root/dist/gosick" ]]; then
exec "$repo_root/dist/gosick" "$@"
fi
exec go run "$repo_root/cmd/homesick" "$@"