Skip to content

Commit

Permalink
add cleanout
Browse files Browse the repository at this point in the history
  • Loading branch information
nxadm committed Jan 28, 2025
1 parent dc7f417 commit e0d676d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion actions/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,31 @@ 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
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
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
cd ..
fi

git clone --recurse-submodules https://github.com/ugexe/zef.git zef
if [ $ZEF_VERSION != "HEAD" ]; then
cd zef
git clean -f -d
git checkout $ZEF_VERSION
cd ..
fi
Expand All @@ -40,4 +44,4 @@ for i in moarvm nqp rakudo zef; do
tar czf $i.tar.gz --exclude-vcs $i
done

ls -laH *.tar.gz
ls -laH *.tar.gz

0 comments on commit e0d676d

Please sign in to comment.