lalrpop/tools/ci-install.sh

12 lines
251 B
Bash
Raw Permalink Normal View History

2018-02-04 07:12:56 -05:00
#!/bin/bash
#
# This script runs on travis to prep the CI as needed.
if command -v mdbook >/dev/null 2>&1; then
echo "mdbook already installed at $(command -v mdbook)"
else
echo "installing mdbook"
cargo install mdbook --vers "0.1.2"
2018-02-04 07:12:56 -05:00
fi