Skip to content

Commit

Permalink
Added double quotes around variable (#597)
Browse files Browse the repository at this point in the history
Forgot to double quote variable and caused configure failures during Github Actions testing.
  • Loading branch information
achauphan committed Jan 13, 2024
1 parent 0dacf47 commit f34a429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tribits/core/package_arch/TribitsGitRepoVersionInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function(tribits_generate_single_repo_version_string gitRepoDir
" with output '${gitCmndOutput}' for sha1 ${gitHeadSha1} of repo ${gitRepoDir}!")
set(headParentList "Error, could not get commit's parents!")
else()
string(REPLACE " " ";" headParentList ${gitCmndOutput})
string(REPLACE " " ";" headParentList "${gitCmndOutput}")
endif()

list(LENGTH headParentList headNumParents)
Expand Down

0 comments on commit f34a429

Please sign in to comment.