mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
8742fac5d8
CL: Mongoose Web Server: Publish sources and tests Resolves https://github.com/cesanta/mongoose/issues/745 PUBLISHED_FROM=7ecd7a3c518cfa614a6ba0838678dcb91b75a8c0
13 lines
176 B
Bash
Executable File
13 lines
176 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd $(dirname $0)
|
|
./mkmgtest.cmd $PWD/mgtest.vcxproj
|
|
cd ..
|
|
cp win/Debug/mgtest.exe .
|
|
|
|
./mgtest.exe || {
|
|
#hack to flush the logs
|
|
echo failed
|
|
exit 1
|
|
}
|