Replace output redirection with touch command

This commit is contained in:
CanbiZ 2025-08-29 22:21:15 +02:00 committed by GitHub
parent 96511325ab
commit c8d969d38a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2007,7 +2007,7 @@ check_for_gh_release() {
if [[ -z "$current" ]]; then
msg_info "${app} pinned to v${pinned_version}, no local version → install required"
CHECK_UPDATE_RELEASE="$pinned_version"
: >"$current_file"
touch "$current_file"
return 0
fi