Remove installer and install first setup

This commit is contained in:
Rudra Saraswat 2023-04-19 23:24:14 +05:30
parent 5add4b75cb
commit cc30816b7d
2 changed files with 7 additions and 3 deletions

View file

@ -19,7 +19,7 @@ git clone 'https://github.com/blend-os/blend-inst'
# which will simply print out the commands that will run in a true
# installation, instead of actually running them.
./blend-inst config 'sample-config.json'
TESTING_INST=true ./blend-inst config 'sample-config.json'
```
## For distributors
@ -31,7 +31,7 @@ Jade-GUI, developed by Crystal Linux, can be used with blend-inst.
### Error codes:
* `1` - Partitioning error
* `2` - Username not allowed
* `3` - Username not allowed
## Contributing

View file

@ -216,6 +216,10 @@ def inst_setup_base(config):
install_pkgs('flatpak')
# Install kernel
install_pkgs(config['kernel'])
# Remove jade-gui and blend-inst
exec_chroot(['pacman', '-Rn', '--noconfirm', 'jade-gui', 'blend-inst'])
# Install blendos-first-setup
install_pkgs('blendos-first-setup-git')
def inst_bootloader(config):