Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
bob
bob.devtools
Commits
db7b2930
Commit
db7b2930
authored
6 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[ci] Fix else clause on bootstrap.sh
parent
c1d2955c
No related branches found
No related tags found
No related merge requests found
Pipeline
#25798
failed
6 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ci/bootstrap.sh
+5
-1
5 additions, 1 deletion
ci/bootstrap.sh
with
5 additions
and
1 deletion
ci/bootstrap.sh
+
5
−
1
View file @
db7b2930
...
...
@@ -65,7 +65,11 @@ install_miniconda() {
if
[
!
-e
miniconda.sh
]
;
then
log_info
"Downloading latest miniconda3 installer..."
# downloads the latest conda installation script
if
[
"
$(
uname
-s
)
"
==
"Linux"
]
;
then
_os
=
"Linux"
else
_os
=
"MacOSX"
;
fi
if
[
"
$(
uname
-s
)
"
==
"Linux"
]
;
then
_os
=
"Linux"
else
_os
=
"MacOSX"
fi
obj
=
https://repo.continuum.io/miniconda/Miniconda3-latest-
${
_os
}
-x86_64
.sh
run_cmd curl
--silent
--output
miniconda.sh
${
obj
}
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment