aboutsummaryrefslogtreecommitdiff
path: root/script/install
diff options
context:
space:
mode:
Diffstat (limited to 'script/install')
-rwxr-xr-xscript/install10
1 files changed, 0 insertions, 10 deletions
diff --git a/script/install b/script/install
deleted file mode 100755
index 1887fc2..0000000
--- a/script/install
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env bash
-#
-# Run all dotfiles installers.
-
-set -e
-
-cd "$(dirname $0)"/..
-
-# find the installers and run them iteratively
-find . -name install.sh | while read installer ; do sh -c "${installer}" ; done