Update 2 files: bootstrap.sh, functions.zsh

This commit is contained in:
2026-08-01 15:21:33 -04:00
parent 13aca4fca5
commit 69846ebc38
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ update_repo() {
if [[ -d "$TARGET_DIR/.git" ]]; then
local remote_sha local_sha
remote_sha=$(git ls-remote origin HEAD | awk '{print $1}')
remote_sha=$(git ls-remote "$REPO_URL" HEAD | awk '{print $1}')
local_sha=$(git -C "$TARGET_DIR" rev-parse HEAD)
if [[ "$remote_sha" == "$local_sha" ]]; then
info "Repository up to date"