PaulKinlan / chromium-android-installer

Install Chromium Test Shell on Android
65 stars 28 forks source link

Missing APK file #9

Open argyleink opened 9 years ago

argyleink commented 9 years ago

install is failing and reporting a missing APK

screen shot 2015-01-05 at 4 15 48 pm

anvio commented 9 years ago

Change the following lines in install-chromeandroid.sh

TMP_CHROME_APK=`mktemp -t chrome-android.XXXX`   || { echo "FATAL: Could not create temp file"; exit 1; }
TMP_CONTENT_APK=`mktemp -t chrome-android.XXXX`  || { echo "FATAL: Could not create temp file"; exit 1; }

to

TMP_CHROME_APK=`mktemp -t chrome-android.XXXX.apk`   || { echo "FATAL: Could not create temp file"; exit 1; }
TMP_CONTENT_APK=`mktemp -t chrome-android.XXXX.apk`  || { echo "FATAL: Could not create temp file"; exit 1; }

This has solved the problem for me.

crowjonah commented 9 years ago

:+1: me too