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 fa80893 commit 676d403Copy full SHA for 676d403
auxiliary/update_cargo-readme.sh
@@ -3,7 +3,13 @@
3
our_version=$(cargo readme -V | perl -ne 'print $1 while /v([\d.]+)/g')
4
last_version=$(cargo search cargo-readme | perl -ne 'print $1 while /^cargo-readme = "([\d.]+)"/g')
5
6
-if [ "$our_version" == "$last_version" ]; then
+js=$(cargo search cargo-readme)
7
+
8
+echo "our: $our_version"
9
+echo "remote: $last_version"
10
+echo "$js"
11
12
+if [ ! -z "$last_version" -a "$our_version" == "$last_version" ]; then
13
echo Version $our_version is of cargo-readme is installed and up to date.
14
else
15
echo "Install cargo-readme"
0 commit comments