Skip to content

Commit

Permalink
Fix TUE_INSTALL_GIT_PULL_Q check for real
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Apr 24, 2024
1 parent d1737a6 commit 49eef2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/tue-install-impl.bash
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ function tue-install-git
TUE_INSTALL_GIT_PULL_Q+=("${target_dir}")
else
# Check if we have already pulled the repo
if [[ ${TUE_INSTALL_GIT_PULL_Q[*]} =~ ^"${target_dir}"$ ]]
if grep -Fqw "${target_dir}" <<< "${TUE_INSTALL_GIT_PULL_Q[@]}"
then
tue-install-debug "Repo previously pulled, skipping"
# We have already pulled this repo, skip it
Expand Down

0 comments on commit 49eef2f

Please sign in to comment.