12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
# vim: ft=bash
|
|
|
|
if ! command -v python3 >/dev/null 2>&1; then
|
|
echo "Err: This script requires Python 3."
|
|
exit -1
|
|
fi
|
|
|
|
dotfile_dir=$(realpath $(dirname "$0"))
|
|
|
|
python3 $dotfile_dir/meta/install.py $dotfile_dir
|