Skip to content

Commit

Permalink
Update verify.sh (#214)
Browse files Browse the repository at this point in the history
Updates verification for Git Bash users to check tree command
  • Loading branch information
kassiebradshaw authored Sep 26, 2023
1 parent b043198 commit 0bf6137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GREEN='\033[0;32m'

main(){

if code --version >/dev/null && git --version >/dev/null && node --version >/dev/null && npm --version >/dev/null && eslint --version >/dev/null && tree --version >/dev/null && cat ~/.gitconfig >/dev/null ; then
if code --version >/dev/null && git --version >/dev/null && node --version >/dev/null && npm --version >/dev/null && eslint --version >/dev/null && (tree --version >/dev/null || tree.com --version >/dev/null) && cat ~/.gitconfig >/dev/null ; then
echo -e "${GREEN}By gum, you've done it!"
else
echo -e "${RED}Something went wrong!"
Expand Down

0 comments on commit 0bf6137

Please sign in to comment.