Commit f7615fe7 authored by Dan McGee's avatar Dan McGee Committed by Pierre Schmitz
Browse files

Fix releasing files with '@' in name



SVN treats '@' as a revision specifier, so with the addition of systemd
spawning service files, we need to ensure it doesn't screw things up.

Signed-off-by: default avatarDan McGee <dan@archlinux.org>
Signed-off-by: default avatarPierre Schmitz <pierre@archlinux.de>
parent 1703b92e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ for tag in "$@"; do
		while read -r file; do
			trash+=("repos/$tag/$file")
		done < <(svn ls "repos/$tag")
		[[ $trash ]] && svn rm -q "${trash[@]}"
		[[ $trash ]] && svn rm -q "${trash[@]/%/@}"
	else
		mkdir -p "repos/$tag"
		svn add --parents -q "repos/$tag"