File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ endfunction()
6969# Validates if given SHA1/tag/branch name exists in local repo
7070function (is_valid_revision repo_dir revision return_val)
7171 message (STATUS "[OPENCL-CLANG] Validating ${revision} in repository" )
72- # Check if we have under revision exitsting branch/tag/SHA1 in this repo
72+ # Check if we have under revision existing branch/tag/SHA1 in this repo
7373 execute_process (
7474 COMMAND ${GIT_EXECUTABLE} log -1 ${revision}
7575 WORKING_DIRECTORY ${repo_dir}
@@ -78,9 +78,9 @@ function(is_valid_revision repo_dir revision return_val)
7878 OUTPUT_QUIET
7979 )
8080 if (${output_var} EQUAL 0)
81- set (${return_val} True PARENT_SCOPE) # this tag/branch/sha1 existis in repo
81+ set (${return_val} True PARENT_SCOPE) # this tag/branch/sha1 exists in repo
8282 else ()
83- set (${return_val} False PARENT_SCOPE) # this tag/branch/sha1 not existis in repo
83+ set (${return_val} False PARENT_SCOPE) # this tag/branch/sha1 not exists in repo
8484 endif ()
8585endfunction ()
8686
You can’t perform that action at this time.
0 commit comments