Skip to content
Snippets Groups Projects
Commit 5479143c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[ci] Fix if clause on build.sh

parent 9dfa6f36
No related branches found
No related tags found
No related merge requests found
Pipeline #25796 failed
...@@ -74,7 +74,11 @@ run_cmd ${CONDA_ROOT}/bin/conda build "--python=${PYTHON_VERSION} --no-anaconda- ...@@ -74,7 +74,11 @@ run_cmd ${CONDA_ROOT}/bin/conda build "--python=${PYTHON_VERSION} --no-anaconda-
# run git clean to clean everything that is not needed. This helps to keep the # run git clean to clean everything that is not needed. This helps to keep the
# disk usage on CI machines to minimum. # disk usage on CI machines to minimum.
if [ "$(uname -s)" == "Linux" ]; then _os="linux" else _os="osx"; fi if [ "$(uname -s)" == "Linux" ]; then
_os="linux"
else
_os="osx"
fi
run_cmd git clean -ffdx \ run_cmd git clean -ffdx \
--exclude="miniconda.sh" \ --exclude="miniconda.sh" \
--exclude="miniconda/pkgs/*.tar.bz2" \ --exclude="miniconda/pkgs/*.tar.bz2" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment