From 52ebb9baa3533cad933de3ab3ce67233a3dcaef9 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Thu, 29 May 2025 23:30:27 +0100 Subject: [PATCH] fix: use full GitHub URL when validating version tags during fresh install - Fixes 'origin does not appear to be a git repository' error - Allows --version flag to work properly during fresh installations --- scripts/install-pulse.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-pulse.sh b/scripts/install-pulse.sh index 5ae41cbc8..595606bae 100755 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -1832,7 +1832,7 @@ case "$INSTALL_MODE" in print_info "Starting installation..." if [ -n "$SPECIFIED_VERSION_TAG" ]; then - if ! git ls-remote --tags --exit-code origin "refs/tags/$SPECIFIED_VERSION_TAG"; then + if ! git ls-remote --tags --exit-code https://github.com/rcourtman/Pulse.git "refs/tags/$SPECIFIED_VERSION_TAG"; then print_error "Specified version tag '$SPECIFIED_VERSION_TAG' not found on remote repository." exit 1 else