8 lines
No EOL
228 B
Bash
8 lines
No EOL
228 B
Bash
#! /bin/sh
|
|
|
|
echo "Updating Apt."
|
|
apt-get update > /dev/null
|
|
echo "Ensuring Pip is installed."
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq python3-pip > /dev/null
|
|
echo "Ensuring Mkdocs is installed."
|
|
pip3 install mkdocs |