Skip to content

Commit

Permalink
Merge pull request #237 from tegonal/bugfix/sigFile-readonly-var
Browse files Browse the repository at this point in the history
cannot set variable readonly in a while loop
  • Loading branch information
robstoll authored Nov 22, 2024
2 parents aa9306d + ce80595 commit 8c91d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gt-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ function gt_pull() {

local repoFile
repoFile=$(realpath --relative-to="$repo" "$absoluteFile")
local -r sigFile="$absoluteFile.$sigExtension"
local sigFile="$absoluteFile.$sigExtension"
if [[ $doVerification == true && -f $sigFile ]]; then
printf "verifying \033[0;36m%s\033[0m from remote %s\n" "$repoFile" "$remote"
if [[ -d "$pullDirAbsolute/$repoFile" ]]; then
Expand Down

0 comments on commit 8c91d33

Please sign in to comment.