We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12b6210 commit 3bee17bCopy full SHA for 3bee17b
_automate/publish.sh
@@ -3,7 +3,7 @@
3
set -exu
4
5
VERSION=$(grep "^version" ./core/Cargo.toml | sed -e 's/.*"\(.*\)"/\1/')
6
-ORDER=(core core-client/transports core-client server-utils tcp ws ws/client http ipc stdio pubsub derive test)
+ORDER=(core server-utils tcp ws http ipc stdio pubsub core-client/transports core-client derive test)
7
8
echo "Publishing version $VERSION"
9
cargo clean
@@ -12,7 +12,7 @@ for crate in ${ORDER[@]}; do
12
cd $crate
13
echo "Publishing $crate@$VERSION"
14
sleep 5
15
- cargo publish $@
+ cargo publish $@ || read -p "\n\t Publishing $crate failed. Press [enter] to continue."
16
cd -
17
done
18
0 commit comments