Skip to content

Commit

Permalink
Fix installation steps for Cookie
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-tai committed Aug 25, 2016
1 parent 4eaf13a commit ee72e2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/util/build-script.cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,27 +78,27 @@ function executeInstall(props, variant) {
let command = '';
let variants = [];

if (props.apkUniversal) {
if (props.apkUniversal[0]) {
addVariants(props, variants, 'universal');
}

if (props.apkArmV7) {
if (props.apkArmV7[0]) {
addVariants(props, variants, 'armeabi-v7a');
}

if (props.apkArmV8) {
if (props.apkArmV8[0]) {
addVariants(props, variants, 'arm64-v8a');
}

if (props.apkArm) {
if (props.apkArm[0]) {
addVariants(props, variants, 'armeabi');
}

if (props.apkX86) {
if (props.apkX86[0]) {
addVariants(props, variants, 'x86');
}

if (props.apkX8664) {
if (props.apkX8664[0]) {
addVariants(props, variants, 'x86_64');
}

Expand Down
Binary file modified releases/0.1.0/9build.zip
Binary file not shown.

0 comments on commit ee72e2c

Please sign in to comment.