Skip to content

Commit

Permalink
recuse submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
nxadm committed Jan 28, 2025
1 parent e0d676d commit 359b59a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions actions/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,21 @@ fi
git clone --recurse-submodules https://github.com/moarvm/moarvm.git
if [ $MOARVM_VERSION != "HEAD" ]; then
cd moarvm
git clean -f -d
git checkout $MOARVM_VERSION
git checkout --recurse-submodules $MOARVM_VERSION
cd ..
fi

git clone --recurse-submodules https://github.com/raku/nqp.git
if [ $NQP_VERSION != "HEAD" ]; then
cd nqp
git clean -f -d
git checkout $NQP_VERSION
git checkout --recurse-submodules $NQP_VERSION
cd ..
fi

git clone --recurse-submodules https://github.com/rakudo/rakudo.git
if [ $RAKUDO_VERSION != "HEAD" ]; then
cd rakudo
git clean -f -d
git checkout $RAKUDO_VERSION
git checkout --recurse-submodules $RAKUDO_VERSION
cd ..
fi

Expand Down

0 comments on commit 359b59a

Please sign in to comment.