You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2023/05/19 21:16:34 UTC

[allura] branch master updated: fix rebuild-all.bash SVN replacement to match updated format

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ea595c6e fix rebuild-all.bash SVN replacement to match updated format
6ea595c6e is described below

commit 6ea595c6e951ec345999d5db7402c59473b8fb24
Author: Dave Brondsema <db...@slashdotmedia.com>
AuthorDate: Fri May 19 21:16:16 2023 +0000

    fix rebuild-all.bash SVN replacement to match updated format
---
 rebuild-all.bash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rebuild-all.bash b/rebuild-all.bash
index f11519687..c7d1cee2f 100755
--- a/rebuild-all.bash
+++ b/rebuild-all.bash
@@ -24,7 +24,7 @@ APPS=(Allura* *Forge*)
 APPS_WITH_DASH_E="${APPS[@]/#/-e ./}"
 
 # don't install ForgeSVN in a main command, since it often is not installable, and its optional
-APPS_DASHE_NO_SVN="${APPS_WITH_DASH_E//-eForgeSVN/}"  # string replacement
+APPS_DASHE_NO_SVN="${APPS_WITH_DASH_E//-e .\/ForgeSVN/}"  # string replacement
 pip install $APPS_DASHE_NO_SVN
 main_ret=$?