|
a/makesrcdist.sh |
|
b/makesrcdist.sh |
|
... |
|
... |
65 |
echo Creating version $version, no tagging
|
65 |
echo Creating version $version, no tagging
|
66 |
fi
|
66 |
fi
|
67 |
sleep 2
|
67 |
sleep 2
|
68 |
|
68 |
|
69 |
|
69 |
|
70 |
editedfiles="`git status -s |\
|
70 |
#editedfiles="`git status -s |\
|
71 |
egrep -v 'makesrcdist.sh|excludefile|manifest.txt'`"
|
71 |
#egrep -v 'makesrcdist.sh|excludefile|manifest.txt'`"
|
72 |
if test "$dotag" = "yes" -a ! -z "$editedfiles"; then
|
72 |
#if test "$dotag" = "yes" -a ! -z "$editedfiles"; then
|
73 |
fatal "Edited files exist: " $editedfiles
|
73 |
# fatal "Edited files exist: " $editedfiles
|
74 |
fi
|
74 |
#fi
|
75 |
|
75 |
|
76 |
|
76 |
|
77 |
if test $dotag = yes ; then
|
77 |
if test $dotag = yes ; then
|
78 |
releasename=upplay-$version
|
78 |
releasename=upplay-$version
|
79 |
else
|
79 |
else
|
|
... |
|
... |
117 |
export LC_ALL=C
|
117 |
export LC_ALL=C
|
118 |
tar tzf $targetdir/$out | sort | cut -d / -f 2- | \
|
118 |
tar tzf $targetdir/$out | sort | cut -d / -f 2- | \
|
119 |
diff manifest.txt - || fatal "Please fix file list manifest.txt"
|
119 |
diff manifest.txt - || fatal "Please fix file list manifest.txt"
|
120 |
|
120 |
|
121 |
# We tag .. as there is the 'packaging/' directory in there
|
121 |
# We tag .. as there is the 'packaging/' directory in there
|
122 |
[ $dotag = "yes" ] && create_tag $TAG
|
122 |
#[ $dotag = "yes" ] && create_tag $TAG
|