mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
fix: chroot buid: Selecting value "user-built" for proper operation (#4280)
The else condition will never be met. The chroot_build_packages function collects all packages everything for all operating systems and the user is drowning in the amount of code being executed.
This commit is contained in:
@@ -151,9 +151,9 @@ function prepare_and_config_main_build_single() {
|
||||
Called early, before any compilation work starts.
|
||||
POST_DETERMINE_CTHREADS
|
||||
|
||||
if [[ $BETA == yes ]]; then
|
||||
if [[ "$BETA" == "yes" ]]; then
|
||||
IMAGE_TYPE=nightly
|
||||
elif [[ $BETA != "yes" ]]; then
|
||||
elif [ "$BETA" == "no" ] || [ "$RC" == "yes" ]; then
|
||||
IMAGE_TYPE=stable
|
||||
else
|
||||
IMAGE_TYPE=user-built
|
||||
|
||||
Reference in New Issue
Block a user