Update program version and fix git command output handling

Bump the program version from 2.2.6 to 2.2.7. Remove unnecessary [-q] flag from the [git ls-remote] command to ensure proper output handling and improve compatibility.
This commit is contained in:
2025-04-23 20:20:26 +02:00
parent e293c02fbb
commit b1562e7d33

View File

@@ -3,7 +3,7 @@
# Program name # Program name
PROGRAM_NAME="Octozipo" PROGRAM_NAME="Octozipo"
PROGRAM_CODE="octozipo" PROGRAM_CODE="octozipo"
PROGRAM_VERSION="2.2.6" PROGRAM_VERSION="2.2.7"
PROGRAM_V="2.2" PROGRAM_V="2.2"
# PROGRAM_URL="https://git.vdm.dev/octoleo/${PROGRAM_CODE}" # PROGRAM_URL="https://git.vdm.dev/octoleo/${PROGRAM_CODE}"
@@ -84,7 +84,7 @@ main() {
# get the package details # get the package details
getPackageDetails "${zip_name}" "${folder_name}" getPackageDetails "${zip_name}" "${folder_name}"
# check if the repo exist on our system # check if the repo exist on our system
if git ls-remote --exit-code --heads "git@${VDM_GIT_URL}:${VDM_ORG}/${VDM_REPO_NAME}.git" "${VDM_REPO_BRANCH}" -q >/dev/null 2>&1; then if git ls-remote --exit-code --heads "git@${VDM_GIT_URL}:${VDM_ORG}/${VDM_REPO_NAME}.git" "${VDM_REPO_BRANCH}" >/dev/null 2>&1; then
# check if repo is locally found # check if repo is locally found
cd "${VDM_PATH_REPO}" >/dev/null 2>&1 || { cd "${VDM_PATH_REPO}" >/dev/null 2>&1 || {
git clone "git@${VDM_GIT_URL}:${VDM_ORG}/${VDM_REPO_NAME}.git" \ git clone "git@${VDM_GIT_URL}:${VDM_ORG}/${VDM_REPO_NAME}.git" \