mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-06 05:24:46 +01:00
15 lines
362 B
Bash
Executable file
15 lines
362 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd $(dirname $0)
|
|
cd ../../
|
|
|
|
cat <<EOF > android/XWords4/src/org/eehouse/android/xw4/SvnVersion.java
|
|
// auto-generated; do not edit
|
|
package org.eehouse.android.xw4;
|
|
class SvnVersion {
|
|
public static final String VERS = "$(svnversion .)";
|
|
}
|
|
EOF
|
|
|
|
# touch the file that depends on VERS.java
|
|
touch android/XWords4/src/org/eehouse/android/xw4/Utils.java
|