parent
35d512262d
commit
5189326431
1 changed files with 19 additions and 3 deletions
|
|
@ -345,7 +345,11 @@ function build_all() {
|
||||||
fix_kit_permissions
|
fix_kit_permissions
|
||||||
install_deps
|
install_deps
|
||||||
load_settings --edit
|
load_settings --edit
|
||||||
|
|
||||||
|
# Build repo if needed
|
||||||
|
if ! [[ -e "${REPO_DIR}/custom.db.tar.gz" ]]; then
|
||||||
update_repo
|
update_repo
|
||||||
|
fi
|
||||||
|
|
||||||
# Build (full)
|
# Build (full)
|
||||||
copy_live_env
|
copy_live_env
|
||||||
|
|
@ -414,7 +418,13 @@ function build_full() {
|
||||||
fix_kit_permissions
|
fix_kit_permissions
|
||||||
install_deps
|
install_deps
|
||||||
load_settings --edit
|
load_settings --edit
|
||||||
|
|
||||||
|
# Build repo if needed
|
||||||
|
if ! [[ -e "${REPO_DIR}/custom.db.tar.gz" ]]; then
|
||||||
update_repo
|
update_repo
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Build Full
|
||||||
copy_live_env
|
copy_live_env
|
||||||
update_live_env
|
update_live_env
|
||||||
# Rerun script as root to start Archiso build process
|
# Rerun script as root to start Archiso build process
|
||||||
|
|
@ -435,7 +445,13 @@ function build_minimal() {
|
||||||
fix_kit_permissions
|
fix_kit_permissions
|
||||||
install_deps
|
install_deps
|
||||||
load_settings --edit
|
load_settings --edit
|
||||||
|
|
||||||
|
# Build repo if needed
|
||||||
|
if ! [[ -e "${REPO_DIR}/custom.db.tar.gz" ]]; then
|
||||||
update_repo
|
update_repo
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Build Minimal
|
||||||
copy_live_env --minimal
|
copy_live_env --minimal
|
||||||
update_live_env --minimal
|
update_live_env --minimal
|
||||||
# Rerun script as root to start Archiso build process
|
# Rerun script as root to start Archiso build process
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue