fix(chpwd): fix chpwd

Dumb syntax error fix
This commit is contained in:
Robert Morrison 2022-12-05 21:39:02 +00:00
parent 5d1484881e
commit ab222a30c7
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

2
chpwd
View File

@ -1,4 +1,4 @@
chpwd() {
[ ! has glow ] && return 0
has glow || return 0
find $PWD -maxdepth 1 -iname 'readme.md' -exec glow {} \;
}