Skip to content

Commit 4cf2236

Browse files
authored
Add instructions to add execute permissions (#2879)
To help students run the tests locally, this commit adds instructions for adding the execute permission to the gradlew wrapper script.
1 parent b9d51e1 commit 4cf2236

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/TESTS.md

+14
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,20 @@ Good luck! Have fun!
8181

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

84+
If you get the following error:
85+
86+
```sh
87+
./gradlew: Permission denied
88+
```
89+
90+
Then the file is missing the execute permission. To fis this, run:
91+
92+
```sh
93+
chmod +x ./gradlew
94+
```
95+
96+
And now you should be able to run the previous command.
97+
8498
4. Solve the exercise. Find and work through the `instructions.append.md` guide ([view on GitHub][hello-world-tutorial]).
8599

86100
Good luck! Have fun!

0 commit comments

Comments
 (0)