summaryrefslogtreecommitdiffstats
path: root/.scripts/publish.sh
blob: 6aaebfd68fa2b4ab9342b355e304f5404f3b8062 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# script to publish the crates 
# we added a 5s sleep in between publish to give time for dependency crate to propagate to crates.io
#

set -ev
cd svgbob && cargo publish && cd - && \
echo "sleeping for 10s" && sleep 10 &&\
cd svgbob_cli && cargo publish && cd -