mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 03:00:15 +03:00
sh/release: rename vere release tarballs
Historically Vere has used a simple 'vx.y.z' versioning scheme that
predates the monorepo structure introduced in 7ce50ad
. Going forward
it's expected that our blessed runtime king/serf binaries will follow
the scheme 'urbit-vx.y.z' to disambiguate them from other repository
subprojects.
This renames Vere release tarballs as their version followed by their
target platform. So with the updated tag scheme, instead of e.g.
'urbit-linux64-vx.y.z.tgz' these will appear along the lines of
'urbit-vx.y.z-linux64.tgz'.
This commit is contained in:
parent
bba91e7a96
commit
f891bef69f
@ -23,11 +23,11 @@ do
|
||||
sh/cross urbit "$plat"
|
||||
|
||||
tmp=$(mktemp -d)
|
||||
mkdir -p $tmp/urbit-$plat-$ver
|
||||
traced cp -r cross/$plat/* $tmp/urbit-$plat-$ver
|
||||
mkdir -p $tmp/$ver-$plat
|
||||
traced cp -r cross/$plat/* $tmp/$ver-$plat
|
||||
|
||||
echo "packaging release/urbit-$plat-$ver.tgz"
|
||||
(cd $tmp; tar cz urbit-$plat-$ver) > release/urbit-$plat-$ver.tgz
|
||||
echo "packaging release/$ver-$plat.tgz"
|
||||
(cd $tmp; tar cz $ver-$plat) > release/$ver-$plat.tgz
|
||||
|
||||
rm -rf $tmp
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user