From fbfc47f72929bb1121cfa333cec094e560aaf99a Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 23 Aug 2020 07:45:28 -0400 Subject: [PATCH] release.sh: install+uninstall --- tools/release.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/release.sh b/tools/release.sh index 62dd6cab5..c92c2a7fa 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -51,12 +51,14 @@ echo "The bastards are trying to immanentize the Eschaton" # requires token in ~/.netrc github-release dankamongmen/notcurses create v$VERSION --name "v$VERSION—$QUIP" --publish $TARBALL.asc -cd python +cd build +sudo make install +cd ../python python3 setup.py sdist +python3 setup.py build twine upload -s -udankamongmen dist/* - -# FIXME need to install fresh notcurses for rust to compile cd ../rust cargo clean cargo publish -# FIXME and at this point, uninstall, yuck +cd ../build +cat install_manifest.txt | sudo xargs rm