The database to use when control over Excel documents is lost
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
TAR_FILE="02-docdb-manual.tar.gz" |
|
|
|
if [[ $EUID -ne 0 ]]; then |
|
|
|
echo |
|
echo "ERROR: This script must be run as root, please try again!" |
|
echo |
|
exit 1 |
|
fi |
|
|
|
cd ~/Documents/docdb |
|
mkdocs build |
|
cd ~/Documents/docdb/site |
|
tar cvzf ~/development/doc-db-docker/install-files/$TAR_FILE .
|
|
|