forked from iirevu/moodle-chatrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitclone.sh
More file actions
19 lines (12 loc) · 958 Bytes
/
gitclone.sh
File metadata and controls
19 lines (12 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
git clone -b MOODLE_500_STABLE https://github.com/moodle/moodle.git
mkdir -p moodle/mod
mkdir -p moodle/question/type
mkdir -p moodle/question/behaviour
( cd moodle/mod && git clone https://github.com/KQMATH/moodle-mod_capquiz.git capquiz )
( cd moodle/question/type && git clone https://github.com/trampgeek/moodle-qtype_coderunner.git coderunner )
( cd moodle/question/type && git clone https://github.com/maths/moodle-qtype_stack.git stack )
( cd moodle/question/behaviour/ && \
git clone https://github.com/maths/moodle-qbehaviour_dfexplicitvaildate.git dfexplicitvaildate && \
git clone https://github.com/maths/moodle-qbehaviour_dfcbmexplicitvaildate.git dfcbmexplicitvaildate && \
git clone https://github.com/maths/moodle-qbehaviour_adaptivemultipart.git adaptivemultipart )
( cd moodle/question/behaviour/ && git clone https://github.com/trampgeek/moodle-qbehaviour_adaptive_adapted_for_coderunner.git adaptive_adapted_for_coderunner )