mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-14 20:24:34 +00:00
11 lines
265 B
Bash
Executable File
11 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for subtree in "SpiffWorkflow" \
|
|
"spiffworkflow-backend" \
|
|
"spiffworkflow-frontend" \
|
|
"flask-bpmn" \
|
|
"bpmn-js-spiffworkflow"
|
|
do
|
|
GIT_MERGE_AUTOEDIT=no git subtree pull --prefix=$subtree git@github.com:sartography/$subtree.git main --squash
|
|
done
|