Update README.md
This commit is contained in:
parent
61bd6bba74
commit
df3e8e3a83
1 changed files with 16 additions and 33 deletions
49
README.md
49
README.md
|
@ -54,6 +54,8 @@ Below is a detailed description of all the flags supported by the Spitfire Build
|
|||
Skips updating the patches repository.
|
||||
- **`-r`**:
|
||||
Runs the built project after the build process completes successfully.
|
||||
- **`--skip-deps`**:
|
||||
Skip checking for required system dependencies.
|
||||
|
||||
### **Compression and Upload Flags**
|
||||
|
||||
|
@ -81,24 +83,24 @@ Below is a detailed description of all the flags supported by the Spitfire Build
|
|||
|
||||
## Example usage:
|
||||
|
||||
- **All steps**:
|
||||
- **All build steps**:
|
||||
```sh
|
||||
go run . -a
|
||||
```
|
||||
|
||||
- **Build only**:
|
||||
- **All build setps without fetching new patches**:
|
||||
```sh
|
||||
go run . -b
|
||||
go run . -a --skip-patch-update
|
||||
```
|
||||
|
||||
- **Upload**:
|
||||
```sh
|
||||
go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin
|
||||
go run . --upload -c
|
||||
```
|
||||
|
||||
- **Build and upload**:
|
||||
```sh
|
||||
go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin -a
|
||||
go run . --upload -c -a
|
||||
```
|
||||
|
||||
- **Display all flags**:
|
||||
|
@ -148,65 +150,46 @@ c:a6af7ebb5c1382084704be0b5714ab026c819d63
|
|||
|
||||
## Repository structure
|
||||
|
||||
[Link to repositary](https://sourceforge.net/projects/spitfire-browser/)
|
||||
|
||||
```
|
||||
spitfire-browser/
|
||||
├── browser/
|
||||
│ ├── amd64/
|
||||
│ │ ├── stable/
|
||||
│ │ │ ├── latest/deb.tar.gz
|
||||
│ │ │ ├── x.x.x/deb.tar.gz
|
||||
│ │ │ ├── vx.x.x/deb.tar.gz
|
||||
│ │ ├── nightly/
|
||||
│ │ ├── latest/deb.tar.gz
|
||||
│ │ ├── yyyy-mm-dd/deb.tar.gz
|
||||
│ ├── arm/
|
||||
│ │ ├── stable/
|
||||
│ │ │ ├── latest/
|
||||
│ │ │ ├── x.x.x/
|
||||
│ │ │ ├── vx.x.x/
|
||||
│ │ ├── nightly/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── yyyy-mm-dd/
|
||||
├── cli-package-manager/
|
||||
├── luncher/
|
||||
│ ├── stable/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── x.x.x/
|
||||
│ │ ├── vx.x.x/
|
||||
│ ├── nightly/
|
||||
│ ├── latest/
|
||||
│ ├── yyyy-mm-dd/
|
||||
├── gui-installer/
|
||||
├── installer/
|
||||
│ ├── stable/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── x.x.x/
|
||||
│ │ ├── vx.x.x/
|
||||
│ ├── nightly/
|
||||
│ ├── latest/
|
||||
│ ├── yyyy-mm-dd/
|
||||
├── gui-package-manager/
|
||||
│ ├── stable/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── x.x.x/
|
||||
│ ├── nightly/
|
||||
│ ├── latest/
|
||||
│ ├── yyyy-mm-dd/
|
||||
├── addons/
|
||||
├── addons/ (planned)
|
||||
│ ├── themes/
|
||||
│ │ ├── stable/
|
||||
│ │ │ ├── latest/
|
||||
│ │ │ ├── x.x.x/
|
||||
│ │ ├── nightly/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── yyyy-mm-dd/
|
||||
│ ├── custom-configs/
|
||||
│ │ ├── stable/
|
||||
│ │ │ ├── latest/
|
||||
│ │ │ ├── x.x.x/
|
||||
│ │ ├── nightly/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── yyyy-mm-dd/
|
||||
│ ├── search-engines/
|
||||
│ ├── stable/
|
||||
│ │ ├── latest/
|
||||
│ │ ├── x.x.x/
|
||||
│ ├── nightly/
|
||||
│ ├── latest/
|
||||
│ ├── yyyy-mm-dd/
|
||||
├── APPINDEX
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue