Skip to content

Commit

Permalink
Merge pull request euslisp#398 from k-okada/fix_circleci
Browse files Browse the repository at this point in the history
apt-get update before apt-get install
  • Loading branch information
k-okada authored Oct 8, 2019
2 parents a0422c8 + 0cbe52e commit e9bda60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ references:
setup-tex: &setup-tex
run:
name: Setup TeX
command: sudo apt-get install -qq -y texlive-latex-base ptex-bin latex2html nkf poppler-utils
command: |-
sudo apt-get update
sudo apt-get install -qq -y texlive-latex-base ptex-bin latex2html nkf poppler-utils
setup-eus: &setup-eus
run:
name: Setup EusLisp
Expand Down

0 comments on commit e9bda60

Please sign in to comment.