1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2024-11-18 01:13:31 +01:00
dotfiles/install.sh

20 lines
436 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
2020-04-14 17:00:41 +02:00
CONFIG=".install.conf.yaml"
DOTBOT_DIR=".dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
2020-04-14 17:00:41 +02:00
git pull || echo "Pulling from remote failed"
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
2021-11-25 15:14:59 +01:00
# Make sure ssh/config is only read/writable for owner
chmod 600 ssh/config