Skip to content

Commit a396e91

Browse files
committed
make install.sh tell us what it is installing and why
1 parent 33c2b4c commit a396e91

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ci/install.sh

+6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
set -ex
33

44
if command -v mdbook >/dev/null 2>&1; then
5+
echo "installing mdbook"
56
cargo install mdbook --vers "0.0.28"
7+
else
8+
echo "mdbook already installed at $(which mdbook)"
69
fi
710

811
if command -v ghp-import >/dev/null 2>&1; then
12+
echo "installing ghp-import"
913
pip install ghp-import
14+
else
15+
echo "ghp-import already installed at $(which ghp-import)"
1016
fi

0 commit comments

Comments
 (0)