-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Authored-by: Seth Boyles <[email protected]>
- Loading branch information
1 parent
6581ae0
commit 3d2a085
Showing
2 changed files
with
28 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
set -e | ||
# bash-it / terminal | ||
source ./install-scripts/bash.sh | ||
source ./install-scripts/bash-it.sh | ||
source ./install-scripts/vim.sh | ||
source ./install-scripts/tmux.sh | ||
|
||
# git setup | ||
source ./install-scripts/git-config.sh | ||
source ./install-scripts/git-hooks.sh | ||
source ./install-scripts/git-author.sh | ||
|
||
# update cred-alert-cli | ||
source ./install-scripts/update-cred-alert.sh | ||
|
||
if [ "$(uname)" = "Darwin" ]; then | ||
echo "Installing OSX only scripts" | ||
source ./install-scripts/ide-prefs.sh | ||
source ./install-scripts/iterm2.sh | ||
source ./install-scripts/keyboard.sh | ||
source ./install-scripts/dock.sh | ||
source ./install-scripts/spectacle.sh | ||
else | ||
source ./install-scripts/git-author-linux.sh | ||
fi | ||
|
||
source ./install-scripts/misc.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,33 +18,7 @@ git pull | |
git remote set-url origin [email protected]:cloudfoundry/capi-workspace | ||
|
||
source ./install-core.sh | ||
|
||
# bash-it / terminal | ||
source ./install-scripts/bash.sh | ||
source ./install-scripts/bash-it.sh | ||
source ./install-scripts/vim.sh | ||
source ./install-scripts/tmux.sh | ||
|
||
# git setup | ||
source ./install-scripts/git-config.sh | ||
source ./install-scripts/git-hooks.sh | ||
source ./install-scripts/git-author.sh | ||
|
||
# update cred-alert-cli | ||
source ./install-scripts/update-cred-alert.sh | ||
|
||
if [ "$(uname)" = "Darwin" ]; then | ||
echo "Installing OSX only scripts" | ||
source ./install-scripts/ide-prefs.sh | ||
source ./install-scripts/iterm2.sh | ||
source ./install-scripts/keyboard.sh | ||
source ./install-scripts/dock.sh | ||
source ./install-scripts/spectacle.sh | ||
else | ||
source ./install-scripts/git-author-linux.sh | ||
fi | ||
|
||
source ./install-scripts/misc.sh | ||
source ./install-extras.sh | ||
|
||
# Add gem dependencies for CAPI-Workspace | ||
bundle | ||
|