File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,6 @@ if [ "${CLASSICAL}" == "1" ]; then
45
45
pids[$i ]=$!
46
46
done
47
47
48
- for i in {0..3}; do
49
- cp -r /root/godot /root/godot-nothreads$i
50
- cd /root/godot-nothreads$i
51
- echo " $SCONS platform=web ${OPTIONS} ${JOBS_NOTHREADS[$i]} "
52
- $SCONS platform=web ${OPTIONS} ${JOBS_NOTHREADS[$i]} &
53
- pids_nothreads[$i ]=$!
54
- done
55
-
56
48
cd /root/godot
57
49
echo " $SCONS platform=web ${OPTIONS} target=editor use_closure_compiler=yes"
58
50
$SCONS platform=web ${OPTIONS} target=editor use_closure_compiler=yes &
@@ -61,13 +53,20 @@ if [ "${CLASSICAL}" == "1" ]; then
61
53
for pid in ${pids[*]} ; do
62
54
wait $pid
63
55
done
56
+ wait $pid_editor
57
+
58
+ for i in {0..3}; do
59
+ cp -r /root/godot /root/godot-nothreads$i
60
+ cd /root/godot-nothreads$i
61
+ echo " $SCONS platform=web ${OPTIONS} ${JOBS_NOTHREADS[$i]} "
62
+ $SCONS platform=web ${OPTIONS} ${JOBS_NOTHREADS[$i]} &
63
+ pids_nothreads[$i ]=$!
64
+ done
64
65
65
66
for pid in ${pids_nothreads[*]} ; do
66
67
wait $pid
67
68
done
68
69
69
- wait $pid_editor
70
-
71
70
mkdir -p /root/out/tools
72
71
cp -rvp /root/godot/bin/* .editor* .zip /root/out/tools
73
72
You can’t perform that action at this time.
0 commit comments