Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove Executable Check in Testing #17

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.29)
cmake_minimum_required(VERSION 3.19)

project(
SetupGo
Expand Down
4 changes: 0 additions & 4 deletions test/cmake/SetupGoTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ if("Set up the latest version of Go" MATCHES ${TEST_MATCHES})
message(FATAL_ERROR "The Go executable at '${GO_EXECUTABLE}' should exist")
endif()

if(NOT IS_EXECUTABLE ${GO_EXECUTABLE})
message(FATAL_ERROR "The Go executable at '${GO_EXECUTABLE}' should be executable")
endif()

execute_process(
COMMAND ${GO_EXECUTABLE} version
RESULT_VARIABLE RES
Expand Down