mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
14 lines
252 B
Bash
14 lines
252 B
Bash
|
#!/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
|
||
|
|