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