11 lines
235 B
Bash
11 lines
235 B
Bash
#!/bin/bash
|
|
|
|
source ./path.sh
|
|
|
|
ORIGIN="$1"
|
|
BRANCH="$2"
|
|
|
|
"${CURRENT_PATH}"/../ability/bin/pull.sh ${ORIGIN} ${BRANCH}
|
|
"${CURRENT_PATH}"/../band/bin/pull.sh ${ORIGIN} ${BRANCH}
|
|
"${CURRENT_PATH}"/../coffee/bin/pull.sh ${ORIGIN} ${BRANCH}
|