This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/publish.sh
2023-09-29 18:36:27 +02:00

8 lines
196 B
Bash
Executable file

#!/bin/bash
set -e
PKGs=(libpt-{core,math,log,net,bintols,ccc,hedu,bin,py} libpt)
for PKG in "${PKGs[@]}"; do
echo "Package: $PKG"
cargo publish $PKG
cargo publish --registry cscherr $PKG
done