diff options
author | Aneesh Agrawal <aneeshusa@gmail.com> | 2016-05-24 23:41:40 -0400 |
---|---|---|
committer | Aneesh Agrawal <aneeshusa@gmail.com> | 2016-05-24 23:41:40 -0400 |
commit | fa33eefcbd58c2d702394d1ac2e1786893740db3 (patch) | |
tree | 49aa82da37e5b2ca32973c259c25d49c98934d3c | |
parent | b6e06bd83740ea5dc3385f88daf88677fc676f11 (diff) | |
download | servo-fa33eefcbd58c2d702394d1ac2e1786893740db3.tar.gz servo-fa33eefcbd58c2d702394d1ac2e1786893740db3.zip |
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.
-rw-r--r-- | support/android/build-apk/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/android/build-apk/src/main.rs b/support/android/build-apk/src/main.rs index 0440cce8711..234a37e9b51 100644 --- a/support/android/build-apk/src/main.rs +++ b/support/android/build-apk/src/main.rs @@ -30,7 +30,7 @@ fn main() { // Get the target android platform from ANDROID_PLATFORM env. Expecting "android-{version}" let android_platform = env::var("ANDROID_PLATFORM") .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. // let standalone_path = env::var("NDK_STANDALONE").ok().unwrap_or("/opt/ndk_standalone".to_string()); |