Files
itgmania212121/stepmania/PBProject/scripts/increment_version.sh
T

20 lines
326 B
Bash
Raw Normal View History

#!/bin/sh
2003-08-02 13:03:15 +00:00
perl -w -e '
open F, "<version.tst"||die;
$ver = <F>;
close F;
chomp $ver;
++$ver;
open F,">version.tst"||die;
print F "$ver\n";
close F;
$date = `date`;
chomp $date;
open F, ">ver.cpp"||die;
2004-10-05 10:32:50 +00:00
print F "unsigned long version_num = $ver;\n";
print F "const char *version_time = \"$date\";\n";
close F;
'
2004-10-05 10:32:50 +00:00
touch ver.cpp