1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2024-10-18 05:14:41 +02:00
dotfiles/install.sh
Eric Teunis de Boone 7edec3a7a7 [ssh] use dotbot for chmodding ./ssh/config
This changes the place to do so from what was introduced in b553944b
2022-02-09 18:02:08 +01:00

15 lines
358 B
Bash
Executable file

#!/usr/bin/env bash
set -e
CONFIG=".install.conf.yaml"
DOTBOT_DIR=".dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git pull || echo "Pulling from remote failed"
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"