mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-14 04:48:15 +01:00
updated notes, modified release script
release scripts modified to accept line conversion utility location on the command line
This commit is contained in:
@@ -35,12 +35,17 @@ esac
|
||||
|
||||
label=""
|
||||
spec=""
|
||||
lineEndConv=""
|
||||
while [ "$1" != "" ] ;
|
||||
do
|
||||
if [ "$1" = "-l" ] ; then
|
||||
shift
|
||||
label=@$1
|
||||
shift
|
||||
elif [ "$1" = "-c" ] ; then
|
||||
shift
|
||||
lineEndConv=$1
|
||||
shift
|
||||
else
|
||||
spec=$1
|
||||
shift
|
||||
@@ -56,6 +61,10 @@ else
|
||||
reltag=""
|
||||
fi
|
||||
|
||||
if [ "$lineEndConv" != "" ] ; then
|
||||
lnendcvt="-c ${lineEndConv}"
|
||||
fi
|
||||
|
||||
if [ $cygwin ] ; then
|
||||
export PWD=`cygpath -w $POCO_BASE`
|
||||
fi
|
||||
@@ -75,5 +84,5 @@ release=$version$reltag
|
||||
echo "Building release $release"
|
||||
|
||||
rm -rf releases/poco-$release.*
|
||||
$POCO_BASE/release/script/mkrelease $release $relspec
|
||||
$POCO_BASE/release/script/mkrelease $release $relspec $lnendcvt
|
||||
|
||||
|
||||
Reference in New Issue
Block a user