diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2009-07-09 16:56:39 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-07-14 14:42:35 -0700 |
commit | 277fc975d2f9f6e6e1142af8dd38b3d3af53e903 (patch) | |
tree | 7be92e3c4ca2145bb890122f4f73a284027631de | |
parent | c330b1453f7c0d7c2261324083ba9e3a98ea130d (diff) |
fix syntax error
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | db-move | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ ftppath_to="$FTP_BASE/$repoto/os/" svnrepo_from="$repofrom-$_arch" svnrepo_to="$repoto-$_arch" svnpath="$(get_svnpath $repoto)" -if [ "$svnpath" != "$(get_svnpath $repofrom" ]; then +if [ "$svnpath" != "$(get_svnpath $repofrom)" ]; then echo "ERROR: Cannot move packages across SVN repos" echo " A move must be within the same svn repo" fi |