Skip to content

Commit

Permalink
release 2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-taylor committed May 25, 2023
1 parent ee3f1fd commit c6eff18
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,15 +246,15 @@ int main(void) {
* Deb-based Systems including Debian, Ubuntu, Mint and Windows Subsystem for Linux

```bash
curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc_2.18_all.deb -o /tmp/dcc_2.18_all.deb
sudo apt install /tmp/dcc_2.18_all.deb
curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc_2.19_all.deb -o /tmp/dcc_2.19_all.deb
sudo apt install /tmp/dcc_2.19_all.deb
```

or

```bash
sudo apt install clang gcc gdb valgrind python3 curl
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc -o /usr/local/bin/dcc
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc -o /usr/local/bin/dcc
sudo chmod o+rx /usr/local/bin/dcc
```

Expand All @@ -270,23 +270,23 @@ int main(void) {

```bash
sudo pacman -S clang gcc gdb valgrind python3 curl
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc -o /usr/local/bin/dcc
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc -o /usr/local/bin/dcc
sudo chmod o+rx /usr/local/bin/dcc
```

* RPM-based Systems including CentOS, Fedora

```bash
sudo yum install clang gcc gdb valgrind python3 curl
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc -o /usr/local/bin/dcc
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc -o /usr/local/bin/dcc
sudo chmod o+rx /usr/local/bin/dcc
```

On OpenSUSE:

```bash
sudo zypper install clang gcc gdb valgrind python3 curl
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc -o /usr/local/bin/dcc
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc -o /usr/local/bin/dcc
sudo chmod o+rx /usr/local/bin/dcc
```

Expand All @@ -301,7 +301,7 @@ int main(void) {
Note: It is usually not a good idea to blindly run remote bash scripts in your terminal, you can inspect the file by opening the URL and reading to see what it does yourself.

```bash
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.18/dcc -o /usr/local/bin/dcc
sudo curl -L https://github.com/COMP1511UNSW/dcc/releases/download/2.19/dcc -o /usr/local/bin/dcc
sudo chmod o+rx /usr/local/bin/dcc
```

Expand Down

0 comments on commit c6eff18

Please sign in to comment.