-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README.md: Fix wrong directory for commands
For unportable, the build/ directory is now inside the git repo, not a sibling directory.
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ sudo apt install git python3 packaging-dev equivs | |
|
||
# Clone the repository and switch to unportable variant | ||
git clone https://github.com/ungoogled-software/ungoogled-chromium-debian.git | ||
cd ungoogled-chromium-debian/ | ||
git switch unportable | ||
git submodule update --init | ||
|
||
|
@@ -49,7 +50,7 @@ git submodule update --init | |
# (Optional) Replace TAG_HERE with the tag you want to build | ||
# Example of a tag: 79.0.3945.88-1.sid1 | ||
# If you omit this step, you will build the latest changes in unportable. | ||
git -C ungoogled-chromium-debian checkout --recurse-submodules TAG_HERE | ||
git checkout --recurse-submodules TAG_HERE | ||
|
||
# Replace UPLOADER_HERE with your uploader string (optional) | ||
# Example of an uploader string: John Doe <[email protected]> | ||
|