platform/archived/tool/archived/pull_subproject
thomashii@dukefirehawk.com 799f94bb60 Updated logo
2023-10-08 11:29:28 +08:00

14 lines
324 B
Bash

#!/usr/bin/env bash
#
# Simple tool script that pulls an angel-dart/<name> project into ./packages/<name>.
if [ "$#" == "0" ]; then
echo "usage: pull_subproject <names...>"
exit 1
fi
set -ex
for project in $*; do
git subtree add --prefix="packages/$project" "https://github.com/angel-dart/$project.git" master
done