We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09dae04 commit b8f7283Copy full SHA for b8f7283
publish.sh
@@ -79,20 +79,6 @@ function get_crate_name {
79
awk -v FS="name = " 'NF>1{print $2; exit}' Cargo.toml
80
}
81
82
-function remoteWait() {
83
- IFS=:
84
- secs=${1}
85
- crate_name=${2}
86
- while [ $secs -gt 0 ]
87
- do
88
- sleep 1 &
89
- printf "\rSleeping to allow %s to propagate on crates.io servers. Continuing in %2d second(s)." ${crate_name} ${secs}
90
- secs=$(( $secs - 1 ))
91
- wait
92
- done
93
- echo
94
-}
95
-
96
function publishCrates {
97
for CRATE in "${crates[@]}"
98
do
@@ -123,7 +109,6 @@ function publishCrates {
123
109
fi
124
110
125
111
echo "Successfully published $crate_name to crates.io"
126
- remoteWait 30 $crate_name
127
112
done
128
113
129
114
0 commit comments