mirror of
https://github.com/schollz/croc.git
synced 2024-11-24 08:02:33 +03:00
Add version to the dir name in the source tarball
This commit is contained in:
parent
e84e89b786
commit
1cdccfa884
@ -2,7 +2,7 @@
|
||||
tmp=$(mktemp -d)
|
||||
VERSION=$(cat ./src/cli/cli.go | grep 'Version = "v' | sed 's/[^0-9.]*\([0-9.]*\).*/\1/')
|
||||
echo $VERSION
|
||||
git clone --depth 1 https://github.com/schollz/croc $tmp/croc
|
||||
(cd $tmp/croc && go mod tidy && go mod vendor)
|
||||
(cd $tmp && tar -cvzf croc_${VERSION}_src.tar.gz croc)
|
||||
git clone --depth 1 https://github.com/schollz/croc $tmp/croc-${VERSION}
|
||||
(cd $tmp/croc-${VERSION} && go mod tidy && go mod vendor)
|
||||
(cd $tmp && tar -cvzf croc_${VERSION}_src.tar.gz croc-${VERSION})
|
||||
mv $tmp/croc_${VERSION}_src.tar.gz dist/
|
||||
|
Loading…
Reference in New Issue
Block a user