Skip to content

Commit

Permalink
Add instructions to add execute permissions (#2879)
Browse files Browse the repository at this point in the history
To help students run the tests locally, this commit adds instructions for adding the execute permission to the gradlew wrapper script.
  • Loading branch information
gs-101 authored Dec 26, 2024
1 parent b9d51e1 commit 4cf2236
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@ Good luck! Have fun!

_(Don't worry about the tests failing, at first, this is how you begin each exercise.)_

If you get the following error:

```sh
./gradlew: Permission denied
```

Then the file is missing the execute permission. To fis this, run:

```sh
chmod +x ./gradlew
```

And now you should be able to run the previous command.

4. Solve the exercise. Find and work through the `instructions.append.md` guide ([view on GitHub][hello-world-tutorial]).

Good luck! Have fun!
Expand Down

0 comments on commit 4cf2236

Please sign in to comment.