Skip to content
Snippets Groups Projects
Commit 8cdfb89a authored by John Hodge's avatar John Hodge
Browse files

Release set script added, assumes mtools b:\ is destination

parent 6b2d8029
No related merge requests found
...@@ -34,5 +34,5 @@ gitstats/ ...@@ -34,5 +34,5 @@ gitstats/
.* .*
*.res.h *.res.h
Dist/
obj-*/ obj-*/
#!/bin/sh
rm -rf Dist
if [ $# -gt 1 ]; then
for arch in $*; do
echo $arch
BUILD_DIST=y ARCH=$arch make install
done
else
BUILD_DIST=y make install
fi
tar -zcf Acess2_latest_bin.tar.gz Dist/*
mdeltree b:/Acess2
mcopy -s Dist/ b:/Acess2
gzip -c AcessRelease.img > Acess2_latest.img.gz
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment