scripts: fix deploying vc2008 solution and empty vc2008 folder

This commit is contained in:
Alibek Omarov 2019-04-08 20:51:49 +03:00
parent 4124e01d65
commit 0840d9ec25
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ echo "Generating VC2008 project"
rm -rf vc2008/
mkdir vc2008/
./waf.bat msdev
find . -name "*.sln" -exec cp --parents \{\} vc2008/ \;
cp *.sln vc2008/
find . -name "*.vcproj" -exec cp --parents \{\} vc2008/ \;
rm -rf vc2008/vc2008 # HACKHACK
7z a -t7z $TRAVIS_BUILD_DIR/xash3d-vc2008-sln.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on -r vc2008