Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

STYLE: Explicitly associate "https" protocol with GitHub external projects #1030

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 CMake/ctkDashboardDriverScript.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ endforeach()

# If the dashscript doesn't define a GIT_REPOSITORY variable, let's define it here.
if(NOT DEFINED GIT_REPOSITORY OR GIT_REPOSITORY STREQUAL "")
set(GIT_REPOSITORY http://github.com/commontk/CTK.git)
set(GIT_REPOSITORY https://github.com/commontk/CTK.git)
endif()

set(repository ${GIT_REPOSITORY})
Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/Log4Qt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if(NOT DEFINED Log4Qt_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/Log4Qt.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/Log4Qt.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/PythonQt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ if(NOT DEFINED PYTHONQT_INSTALL_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/PythonQt.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/PythonQt.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/QtSOAP.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if(NOT DEFINED QtSOAP_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/QtSOAP.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/QtSOAP.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/QtTesting.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if(NOT DEFINED QtTesting_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/QtTesting.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/QtTesting.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/ZMQ.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if(NOT DEFINED ZMQ_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/PatrickCheng/zeromq2.git"
set(location_args GIT_REPOSITORY "https://github.com/PatrickCheng/zeromq2.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/qRestAPI.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if(NOT DEFINED ${proj}_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/qRestAPI.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/qRestAPI.git"
GIT_TAG ${revision_tag})
endif()

Expand Down
2 changes: 1 addition & 1 deletion CMakeExternals/qxmlrpc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if(NOT DEFINED qxmlrpc_DIR)
set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
GIT_TAG ${revision_tag})
else()
set(location_args GIT_REPOSITORY "${EP_GIT_PROTOCOL}://github.com/commontk/qxmlrpc.git"
set(location_args GIT_REPOSITORY "https://github.com/commontk/qxmlrpc.git"
GIT_TAG ${revision_tag})
endif()

Expand Down