mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
Fix Android APK building (packaging)
I missed this syntax error during my review, and we don't check that packaging succeeds in regular build suite, but only as a Nightly build.
This commit is contained in:
parent
b6e06bd837
commit
fa33eefcbd
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ fn main() {
|
||||||
// Get the target android platform from ANDROID_PLATFORM env. Expecting "android-{version}"
|
// Get the target android platform from ANDROID_PLATFORM env. Expecting "android-{version}"
|
||||||
let android_platform = env::var("ANDROID_PLATFORM")
|
let android_platform = env::var("ANDROID_PLATFORM")
|
||||||
.ok()
|
.ok()
|
||||||
.expect("Please set the ANDROID_PLATFORM environment variable")
|
.expect("Please set the ANDROID_PLATFORM environment variable");
|
||||||
|
|
||||||
// Get the standalone NDK path from NDK_STANDALONE env.
|
// Get the standalone NDK path from NDK_STANDALONE env.
|
||||||
// let standalone_path = env::var("NDK_STANDALONE").ok().unwrap_or("/opt/ndk_standalone".to_string());
|
// let standalone_path = env::var("NDK_STANDALONE").ok().unwrap_or("/opt/ndk_standalone".to_string());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue