Ubuntu Pastebin

Paste from om26er at Thu, 9 Apr 2015 19:47:38 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
CLICK_PACKAGE=$1

if [ -z $CLICK_PACKAGE ] 
  then echo provide click package name as argument
  exit 0;
fi

adb push $CLICK_PACKAGE /tmp
adb shell pkcon install-local /tmp/$CLICK_PACKAGE --allow-untrusted
adb shell rm /tmp/$CLICK_PACKAGE
Download as text