[arch-projects] [PATCH] [devtools] Fix releasing files with '@' in name
13 Oct
2012
13 Oct
'12
5:28 p.m.
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 <dan@archlinux.org> --- archrelease.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 1.7.12.2
4420
Age (days ago)
4420
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dan McGee