12 lines
195 B
Bash
Executable file
12 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
# Git Config
|
|
source "./setup/install.sh";
|
|
source "./flow/install.sh";
|
|
|
|
# Troll Stuff
|
|
source "./git-auf-deutsch/install.sh";
|
|
|
|
popd > /dev/null;
|