Closed xtompok closed 3 years ago
When building package make tries to delete all files in dist/ directory. If the directory is not present (which is default after cloning) or it is empty then rm dist/* fails and so the make. Fix is remove the rm dist/* line or use -f.
make
dist/
rm dist/*
-f
Thanks for noting. Fixed in 4e8f08b.
When building package
make
tries to delete all files indist/
directory. If the directory is not present (which is default after cloning) or it is empty thenrm dist/*
fails and so themake
. Fix is remove therm dist/*
line or use-f
.