Skip to content

Commit e0d676d

Browse files
committed
add cleanout
1 parent dc7f417 commit e0d676d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

actions/download.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,31 @@ fi
1111
git clone --recurse-submodules https://github.com/moarvm/moarvm.git
1212
if [ $MOARVM_VERSION != "HEAD" ]; then
1313
cd moarvm
14+
git clean -f -d
1415
git checkout $MOARVM_VERSION
1516
cd ..
1617
fi
1718

1819
git clone --recurse-submodules https://github.com/raku/nqp.git
1920
if [ $NQP_VERSION != "HEAD" ]; then
2021
cd nqp
22+
git clean -f -d
2123
git checkout $NQP_VERSION
2224
cd ..
2325
fi
2426

2527
git clone --recurse-submodules https://github.com/rakudo/rakudo.git
2628
if [ $RAKUDO_VERSION != "HEAD" ]; then
2729
cd rakudo
30+
git clean -f -d
2831
git checkout $RAKUDO_VERSION
2932
cd ..
3033
fi
3134

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

43-
ls -laH *.tar.gz
47+
ls -laH *.tar.gz

0 commit comments

Comments
 (0)