Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): respect NO_ANDROID=1 in ssc build #653

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions bin/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,10 @@ function first_time_experience_setup() {
export BUILD_ANDROID="1"
local target="$1"

if [[ -n "$NO_ANDROID" ]]; then
unset BUILD_ANDROID
fi

if [ -z "$target" ] || [[ "$target" == "linux" ]]; then
if [[ "$(host_os)" == "Linux" ]]; then
local package_manager="$(determine_package_manager)"
Expand Down