generated from PlexSheep/baserepo
8 lines
196 B
Bash
Executable file
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
|