File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ repos=(
30
30
" https://github.com/edx/ecommerce.git"
31
31
" https://github.com/edx/edx-e2e-tests.git"
32
32
" https://github.com/edx/edx-notes-api.git"
33
- " https://github.com/edx/edx-platform.git"
34
33
" https://github.com/edx/xqueue.git"
35
34
" https://github.com/edx/edx-analytics-pipeline.git"
36
35
" https://github.com/edx/gradebook.git"
@@ -41,6 +40,8 @@ private_repos=(
41
40
" https://github.com/edx/edx-themes.git"
42
41
)
43
42
43
+ edx_repo=" https://github.com/edly-io/edx-platform.git"
44
+
44
45
wp_plugin_repos=(
45
46
" [email protected] :edly-io/edly-wp-plugin.git"
46
47
)
@@ -133,11 +134,23 @@ _get_latest_wp_tag() {
133
134
134
135
clone ()
135
136
{
137
+
136
138
_clone " ${repos[@]} "
137
139
138
140
WP_PLUGIN_DIR=$DEVSTACK_WORKSPACE /wp_plugins
139
141
WP_THEME_DIR=$DEVSTACK_WORKSPACE /wp_themes
140
142
143
+ # clone Edly edx-platform
144
+ cd $DEVSTACK_WORKSPACE
145
+ if [ ! -d $DEVSTACK_WORKSPACE /edx-platform ]; then
146
+ git clone $edx_repo --branch develop
147
+ else
148
+ printf " The [%s] repo is already checked out. \n" $repo
149
+ fi
150
+
151
+
152
+
153
+
141
154
[ -d $WP_PLUGIN_DIR ] || mkdir $WP_PLUGIN_DIR
142
155
[ -d $WP_THEME_DIR ] || mkdir $WP_THEME_DIR
143
156
You can’t perform that action at this time.
0 commit comments