adjust root folder

This commit is contained in:
Steve Karg
2019-10-08 23:47:53 -05:00
parent b6fc50ddea
commit a42e8f507c
1258 changed files with 26 additions and 214 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
# Release helper for this project
SVN_PROJECT=trunk/bacnet-stack
SVN_BASE_URL=https://svn.code.sf.net/p/bacnet/code/
SVN_TRUNK_NAME=${SVN_BASE_URL}${SVN_PROJECT}
if [ -z "$1" ]
then
echo "Usage: `basename $0` export-directory"
echo "Exports HEAD of ${SVN_PROJECT} in Windows CRLF format"
exit 1
fi
echo "Getting another clean version out of subversion for Windows zip"
svn export --native-eol CRLF ${SVN_TRUNK_NAME} ${1}
echo "done."
echo "Complete!"