Skip to content
Snippets Groups Projects
Commit 48c8eb9d authored by Benoit Boissinot's avatar Benoit Boissinot
Browse files

test-subrepo-svn: properly escape the url, make it work for svn 1.5 again

parent 1b45468d
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
if [ $? -ne 0 ]; then
escapedwd="/$escapedwd"
fi
escapedwd=`python -c "import urllib, sys; sys.stdout.write(urllib.quote(sys.argv[1]))" "$escapedwd"`
filterpath="s|$escapedwd|/root|"
filtersvn='s/ in transaction.*/ is out of date/;s/Out of date: /File /'
......@@ -33,7 +34,7 @@
svn ci -m 'Add alpha'
svn up
cat > extdef <<EOF
externals -r1 "$SVNREPO/externals"
externals -r1 $SVNREPO/externals
EOF
svn propset -F extdef svn:externals src
svn ci -m 'Setting externals'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment