Skip to content

Commit

Permalink
Update the init script to install java 11 (#11)
Browse files Browse the repository at this point in the history
* init script updates to include installation of java 11

* Add installation link for WPILib tools to the README
  • Loading branch information
Superbro525Alt committed Nov 5, 2023
1 parent f78aff5 commit 362005b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ CurtinFRC 2024 Codebase
===

# Setup

**This assumes that you have the WPILib tools installed. If you do not, follow the instructions [here](https://docs.wpilib.org/en/stable/docs/zero-to-robot/step-2/wpilib-setup.html).**

## Linux
Fork this repository then open up a terminal and run :
```bash
Expand Down
4 changes: 3 additions & 1 deletion init
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin
#!/usr/bin/sh
sudo apt update
sudo apt install -y openjdk-11-jre-headless
chmod +x gradlew
./gradlew installRoborioToolchain
./gradlew build
Expand Down

0 comments on commit 362005b

Please sign in to comment.