Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ParaView-Superbuild
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ParaView
ParaView-Superbuild
Merge requests
!791
superbuild: update to suppress progress for downloads with Ninja
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
superbuild: update to suppress progress for downloads with Ninja
ben.boeckel/paraview-superbuild:superbuild-no-progress-ninja
into
master
Overview
3
Commits
5
Pipelines
12
Changes
1
Merged
Ben Boeckel
requested to merge
ben.boeckel/paraview-superbuild:superbuild-no-progress-ninja
into
master
4 years ago
Overview
3
Commits
5
Pipelines
12
Changes
1
Expand
0
0
Merge request reports
Viewing commit
2d235b80
Prev
Next
Show latest version
1 file
+
11
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
2d235b80
ci: update fetch_submodule to work for old git
· 2d235b80
Ben Boeckel
authored
4 years ago
.gitlab/ci/fetch_submodule.cmake
+
11
−
2
Options
@@ -22,8 +22,17 @@ execute_process(
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if
(
res
)
message
(
FATAL_ERROR
"Failed to get the remote url for the submodule:
${
err
}
"
)
execute_process
(
COMMAND
"
${
GIT_COMMAND
}
"
config --get remote.origin.url
OUTPUT_VARIABLE remote_url
RESULT_VARIABLE res
ERROR_VARIABLE err
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if
(
res
)
message
(
FATAL_ERROR
"Failed to get the remote url for the submodule:
${
err
}
"
)
endif
()
endif
()
# Take the "directory" of the source project path and append the "filename" of
Loading