Skip to content

Commit

Permalink
Add missing 'sudo' to GitHub workflow test.yml
Browse files Browse the repository at this point in the history
A yank paste oversight caused this. Added sudo to the rest of the
install commands that did not use sudo.
  • Loading branch information
xexyl committed Jul 4, 2024
1 parent 32b049c commit 20e372b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
- name: clone seqcexit
run: git clone https://github.com/lcn2/seqcexit
- name: install seqcexit
run: cd seqcexit && make install
run: cd seqcexit && sudo make install
- name: clone picky
run: git clone https://github.com/xexyl/picky
- name: clone checknr
run: git clone https://github.com/lcn2/checknr.git
- name: install checknr
run: cd checknr && make install
run: cd checknr && sudo make install
- name: install picky
run: cd picky && make && cp -p picky /usr/local/bin
run: cd picky && make && sudo cp -p picky /usr/local/bin
- name: make
run: make
- name: make slow_prep
Expand Down

0 comments on commit 20e372b

Please sign in to comment.