From 78b6f326b2a7797856811e242070e3e0cfedae2b Mon Sep 17 00:00:00 2001 From: LilithSilver <84940819+LilithSilver@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:48:11 -0700 Subject: [PATCH] docs: Fix build command & improve clarity (#47) Co-authored-by: oSumAtrIX --- docs/revanced-development/1_setup.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/revanced-development/1_setup.md b/docs/revanced-development/1_setup.md index 84bd3ae..a8621ca 100644 --- a/docs/revanced-development/1_setup.md +++ b/docs/revanced-development/1_setup.md @@ -28,19 +28,19 @@ A certain development environment is suggested to allow for streamlined developm ```bash for project in */; do - cd "$project" && ./gradlew build + cd "$project" && ./gradlew build && cd .. done ``` > [!NOTE] > If the build fails due to authentication, you may need to authenticate to GitHub Packages. -> Create a PAT with the scope `read:packages` [here](https://github.com/settings/tokens/new?scopes=read:packages&description=ReVanced) and add your token to ~/.gradle/gradle.properties. +> Create a personal access tokens with the scope `read:packages` [here](https://github.com/settings/tokens/new?scopes=read:packages&description=ReVanced) and add your token to ~/.gradle/gradle.properties. Create the file if it does not exist. > > Example `gradle.properties` file: > > ```properties -> gpr.user = user -> gpr.key = key +> gpr.user = +> gpr.key = > ``` ## ⚙️ Setup your workspace in IntelliJ IDEA