I have a build script that I use to produce my install files. To keep the internal version subversion numbers in sync, I append a blank line to the end of the script files, then do another check-in to bump the version number in all the files to the same value. I then use this value in the script like this:
REVISION="$Rev: 58 $"
Is there a cleaner way rather than adding the blank line? I tried using "touch" but Subversion reference see the timestamp change.