mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-03-20 17:48:44 +00:00
13 lines
351 B
Bash
13 lines
351 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
class_dir=bin/classes/com/arm/wlauto/uiauto
|
||
|
base_classes=`python -c "import os, wlauto; print os.path.join(os.path.dirname(wlauto.__file__), 'common', 'android', '*.class')"`
|
||
|
mkdir -p $class_dir
|
||
|
cp $base_classes $class_dir
|
||
|
|
||
|
ant build
|
||
|
|
||
|
if [[ -f bin/com.arm.wlauto.uiauto.gmail.jar ]]; then
|
||
|
cp bin/com.arm.wlauto.uiauto.gmail.jar ..
|
||
|
fi
|