Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
PHPirates committed Jan 23, 2018
1 parent cfd1c42 commit 92ebf67
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
notifications:
email: false
install:
- sudo apt-get update
# Silent install from conda docs
# https://conda.io/docs/user-guide/install/macos.html#install-macos-silent
# adapted using
Expand All @@ -15,12 +14,12 @@ install:
# From tectonic docs
# https://tectonic-typesetting.github.io/en-US/install.html#the-anaconda-method
- if ! command -v conda > /dev/null; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
conda config --add channels conda-forge
conda config --set always_yes yes
conda update --all
conda install tectonic
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda;
conda config --add channels conda-forge;
conda config --set always_yes yes;
conda update --all;
conda install tectonic;
fi
- conda info -a
cache:
Expand Down

0 comments on commit 92ebf67

Please sign in to comment.