Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.devtools
Commits
db7b2930
Commit
db7b2930
authored
Jan 10, 2019
by
André Anjos
💬
Browse files
[ci] Fix else clause on bootstrap.sh
parent
c1d2955c
Pipeline
#25798
failed with stages
in 3 minutes and 35 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ci/bootstrap.sh
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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment