issues
search
ziglang
/
release-cutter
automating the zig release process
MIT License
9
stars
8
forks
source link
update-zig-bootstrap: make more robust
#3
Closed
motiejus
closed
1 year ago
motiejus
commented
1 year ago
set -u
to avoid forgetting to set $1, $2 and $3
replace
cp
with
git archive
to avoid trash files from the local repository.
remove some files that no longer exist in the main repository.
andrewrk
commented
1 year ago
Cool, thanks!
set -u
to avoid forgetting to set $1, $2 and $3cp
withgit archive
to avoid trash files from the local repository.