minecraft-source/create-branches.sh

10 lines
138 B
Bash
Executable File

#!/bin/bash
branch_flags=--orphan
cat versions.txt | while read line
do
./create-branch.sh $line $branch_flags
branch_flags=-b
done