|
@@ -46,10 +46,9 @@ _svn export ${verbose} "${@}" "'${uri}@${rev}'" "'${basename}'"
|
|
date="$( _svn info --show-item last-changed-date "'${uri}@${rev}'" |tail -n 1 )"
|
|
date="$( _svn info --show-item last-changed-date "'${uri}@${rev}'" |tail -n 1 )"
|
|
|
|
|
|
# Generate the archive, sort with the C locale so that it is reproducible.
|
|
# Generate the archive, sort with the C locale so that it is reproducible.
|
|
-# We do not want the .svn dir; we keep other .svn files, in case they are the
|
|
|
|
-# only files in their directory.
|
|
|
|
-find "${basename}" -not -type d \
|
|
|
|
- -and -not -path "./.svn/*" >"${output}.list"
|
|
|
|
|
|
+# We did a 'svn export' above, so it's not a working copy (there is no .svn
|
|
|
|
+# directory or file to ignore).
|
|
|
|
+find "${basename}" -not -type d >"${output}.list"
|
|
LC_ALL=C sort <"${output}.list" >"${output}.list.sorted"
|
|
LC_ALL=C sort <"${output}.list" >"${output}.list.sorted"
|
|
|
|
|
|
# Create GNU-format tarballs, since that's the format of the tarballs on
|
|
# Create GNU-format tarballs, since that's the format of the tarballs on
|