mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
14 lines
280 B
Bash
Executable file
14 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd $(dirname $0)
|
|
cd ../XWords4
|
|
|
|
if [ ! -e local.properties ]; then
|
|
ANDROID="$(which android)"
|
|
SDK_DIR=$(dirname $ANDROID)
|
|
SDK_DIR=$(dirname $SDK_DIR)
|
|
echo "# generated by $0" > local.properties
|
|
echo "sdk.dir=$SDK_DIR" >> local.properties
|
|
fi
|
|
|
|
exit 0
|