From a6034ce47098641162db9ceb471bff2c348e1c2b Mon Sep 17 00:00:00 2001 From: Micheal Wilkinson Date: Fri, 20 Mar 2026 13:06:46 +0000 Subject: [PATCH] chore(bash): remove redundant bash script --- bin/homesick | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 bin/homesick diff --git a/bin/homesick b/bin/homesick deleted file mode 100755 index c3909a7..0000000 --- a/bin/homesick +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -repo_root="$(cd "$script_dir/.." && pwd)" - -if [[ -x "$repo_root/dist/gosick" ]]; then - exec "$repo_root/dist/gosick" "$@" -fi - -exec go run "$repo_root/cmd/homesick" "$@"