|
@@ -1,10 +1,13 @@
|
|
|
#!/bin/bash
|
|
|
set -o errexit -o pipefail
|
|
|
+
|
|
|
REPO_URL="https://github.com/KylePDavis/dotfiles"
|
|
|
REPO_DIR="$HOME/.dotfiles"
|
|
|
|
|
|
if ! [[ -d "$REPO_DIR" ]]; then
|
|
|
|
|
|
+ gimme git
|
|
|
+
|
|
|
git clone "$REPO_URL" "$REPO_DIR"
|
|
|
|
|
|
if [[ -x "$REPO_DIR/install.sh" ]]; then
|