Skip to content

Commit 8bc3380

Browse files
committed
hi
2 parents f7b70c3 + c2d0fde commit 8bc3380

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

.bashrc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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-

.grrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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'
3431
fi
3532

3633
function releaseCommits() {

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
104104
fi
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`
108108
do
109109
# If it's not a config file...
110110
if ! [[ -n `echo $f | grep bash_config` ]]; then
@@ -135,7 +135,7 @@ fonts=/Library/Fonts
135135
if [[ ! -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
137137
else
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

0 commit comments

Comments
 (0)