From f7615fe7d7eb6601a487b3e9a0da3668b1ff53ee Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 13 Oct 2012 10:28:52 -0500 Subject: 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: Dan McGee Signed-off-by: Pierre Schmitz --- archrelease.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archrelease.in') diff --git a/archrelease.in b/archrelease.in index 533a547..2e742c2 100644 --- a/archrelease.in +++ b/archrelease.in @@ -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" -- cgit v1.2.3-54-g00ecf