summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2018-03-13 15:25:01 +0100
committerOlivier Gayot <olivier.gayot@sigexec.com>2018-03-13 15:29:02 +0100
commit50b2df1bdcdf82a9a218ab5be19cd2845c8c6450 (patch)
treed569f9893472cdd757463279d8a96196e90efcce
parentcf0dd78f7fb1f599f61d8e47ac7fa026fa4717d3 (diff)
Used GNU find instead of using bash globbingHEADmaster
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
-rw-r--r--debian/README.svn2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/README.svn b/debian/README.svn
index 57f91d3..798bc91 100644
--- a/debian/README.svn
+++ b/debian/README.svn
@@ -69,7 +69,7 @@ Subversion repository, proceed as follows:
- inside phpbb3-$VERSION,
extract the components e.g. like this (for .tar.xz only):
- for i in ../*orig-*.tar.xz; do
+ for i in $(find ../ -name '*orig-*.tar.xz'); do
dir=$(basename $i | sed 's/.*orig-\(.*\).tar.xz/\1/')
mkdir $dir && tar -xa --strip 1 -C $dir -f $i
done