removed sudo from circleci install commands

pull/14/head
Scott Anderson 2019-01-18 14:21:32 -07:00
parent 713861f673
commit 83423675a4
1 changed files with 2 additions and 2 deletions

View File

@ -17,10 +17,10 @@ jobs:
command: mkdir -p $HOME/bin command: mkdir -p $HOME/bin
- run: - run:
name: Install Hugo name: Install Hugo
command: sudo ./deploy/ci-install-hugo.sh command: ./deploy/ci-install-hugo.sh
- run: - run:
name: Install s3deploy name: Install s3deploy
command: sudo ./deploy/ci-install-s3deploy.sh command: ./deploy/ci-install-s3deploy.sh
- save_cache: - save_cache:
key: install-v1-{{ checksum ".circleci/config.yml" }} key: install-v1-{{ checksum ".circleci/config.yml" }}
paths: paths: