mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
probably fix snapshot filenames
git-svn-id: https://svn.eduke32.com/eduke32@1654 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1778d37b07
commit
ff325e2205
1 changed files with 9 additions and 9 deletions
|
@ -88,29 +88,29 @@ then
|
||||||
mkdir $output/$date-$head
|
mkdir $output/$date-$head
|
||||||
|
|
||||||
# package the binary snapshot
|
# package the binary snapshot
|
||||||
echo zip -9 $output/$date-$head/$basename_$platform_$date-$head.zip ${bin_packaged[@]}
|
echo zip -9 $output/$date-$head/${basename}_${platform}_$date-$head.zip ${bin_packaged[@]}
|
||||||
zip -9 $output/$date-$head/$basename_$platform_$date-$head.zip ${bin_packaged[@]}
|
zip -9 $output/$date-$head/${basename}_${platform}_$date-$head.zip ${bin_packaged[@]}
|
||||||
|
|
||||||
# hack to restore [e]obj/keep.me
|
# hack to restore [e]obj/keep.me
|
||||||
echo svn update -r $head
|
echo svn update -r $head
|
||||||
svn update -r $head
|
svn update -r $head
|
||||||
|
|
||||||
# export the source tree into the output directory
|
# export the source tree into the output directory
|
||||||
svn export . $output/$date-$head/$basename_$date-$head
|
svn export . $output/$date-$head/${basename}_$date-$head
|
||||||
echo svn export . $output/$date-$head/$basename_$date-$head
|
echo svn export . $output/$date-$head/${basename}_$date-$head
|
||||||
|
|
||||||
# package the source
|
# package the source
|
||||||
cd $output/$date-$head
|
cd $output/$date-$head
|
||||||
|
|
||||||
# first remove the unnecessary files
|
# first remove the unnecessary files
|
||||||
for i in "${not_src_packaged[@]}"; do
|
for i in "${not_src_packaged[@]}"; do
|
||||||
echo rm -r $basename_$date-$head/$i
|
echo rm -r ${basename}_$date-$head/$i
|
||||||
rm -r $basename_$date-$head/$i
|
rm -r ${basename}_$date-$head/$i
|
||||||
done
|
done
|
||||||
|
|
||||||
echo tar cjf $basename_src_$date-$head.tar.bz2 $basename_$date-$head
|
echo tar cjf ${basename}_src_$date-$head.tar.bz2 ${basename}_$date-$head
|
||||||
tar cjf $basename_src_$date-$head.tar.bz2 $basename_$date-$head
|
tar cjf ${basename}_src_$date-$head.tar.bz2 ${basename}_$date-$head
|
||||||
rm -r $basename_$date-$head
|
rm -r ${basename}_$date-$head
|
||||||
|
|
||||||
# output the changelog since last snapshot in the output directory
|
# output the changelog since last snapshot in the output directory
|
||||||
if [ $lastrevision ]
|
if [ $lastrevision ]
|
||||||
|
|
Loading…
Reference in a new issue