Skip to content

Commit

Permalink
better publish Debug and Release assemblies
Browse files Browse the repository at this point in the history
  • Loading branch information
bodewig committed Nov 17, 2015
1 parent 9f648f9 commit 75c0ff0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions create-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ if [ $# -lt 1 ]; then
exit 1
fi

mkdir -p build/bindist-tmp/xmlunit-$1/apidocs
mkdir -p build/bindist-tmp/xmlunit-$1
cp README.md LICENSE build/bindist-tmp/xmlunit-$1
cp build/bin/Debug/xmlunit-*.dll build/bindist-tmp/xmlunit-$1
for d in Debug Release; do
mkdir build/bindist-tmp/xmlunit-$1/$d
cp build/bin/$d/xmlunit-* build/bindist-tmp/xmlunit-$1/$d
done
mkdir build/bindist-tmp/xmlunit-$1/apidocs
cp -r build/html/* build/bindist-tmp/xmlunit-$1/apidocs
cd build/bindist-tmp
zip -r xmlunit-$1-bin.zip xmlunit-$1
Expand Down

0 comments on commit 75c0ff0

Please sign in to comment.