Skip to content

Commit

Permalink
Fix Android APK building (packaging)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aneeshusa committed May 25, 2016
1 parent b6e06bd commit fa33eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/android/build-apk/src/main.rs
Expand Up @@ -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());
Expand Down

0 comments on commit fa33eef

Please sign in to comment.