File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -902,7 +902,3 @@ function file-to-clipboard() {
902902 -e end \
903903 " $@ "
904904}
905-
906- # This loads the Included Health shell augmentations into your interactive shell
907- . " $HOME /.ih/augment.sh"
908-
Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ if type "asdf" > /dev/null 2>&1; then
2828 # source "$(brew --prefix asdf)/libexec/asdf.sh"
2929 # Below, we inline the above brew prefix calls for shell startup speed
3030 source " /usr/local/opt/asdf/libexec/asdf.sh"
31- else
32- echo ' asdf not found'
33- echo ' Suggest: brew install asdf'
3431fi
3532
3633function releaseCommits() {
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ if [ -z "$1" ]; then
4444 let xx=0
4545
4646 # Find all system config files that aren't vim swap files and loop through them
47- for file in $( find . -type f -depth 1 -name " .bash_config*" | grep -v .swp)
47+ for file in $( find . -type f -maxdepth 1 -name " .bash_config*" | grep -v .swp)
4848 do
4949 # Show them in a list with a counter
5050 xx=$( expr $xx + 1)
@@ -104,7 +104,7 @@ if [[ -d "$vsCodeDir" ]]; then
104104fi
105105
106106# Loop through all dotfiles...
107- for f in ` find . -type f -depth 1 -name " .*" | grep -v .swp`
107+ for f in ` find . -type f -maxdepth 1 -name " .*" | grep -v .swp`
108108do
109109 # If it's not a config file...
110110 if ! [[ -n ` echo $f | grep bash_config` ]]; then
@@ -135,7 +135,7 @@ fonts=/Library/Fonts
135135if [[ ! -d $fonts ]]; then
136136 echo $COLOR_LIGHT_RED$fonts$COLOR_RED " does not exist! Please manually install the fonts in this dir that I'm too lazy to list" $COLOR_RESET
137137else
138- for font in ` find . -type f -depth 1 -name " *.otf" `
138+ for font in ` find . -type f -maxdepth 1 -name " *.otf" `
139139 do
140140 echo $COLOR_GREEN " Installing font $COLOR_LIGHT_GREEN$font$COLOR_GREEN to$COLOR_LIGHT_GREEN $fonts$COLOR_GREEN ...$COLOR_RESET "
141141 cp $font $fonts
You can’t perform that action at this time.
0 commit comments