Small changes

master
Jonathan Hodgson 7 years ago
parent baa8c59d74
commit 6064509d32
  1. 8
      config/oh-my-zsh/functions.zsh

@ -49,7 +49,11 @@ function aquarius() {
if [ -d $public_html ]; then
theme=$public_html/wp-content/themes
if [ -d $theme ]; then
cdlc $theme/aquarius
if [ -d "$theme/aquarius" ]; then
cdlc $theme/aquarius
else
cdlc $theme/theme_aquarius
fi
else
echo " Can't find theme folder "
fi
@ -64,7 +68,7 @@ function theme() {
if [ -d $public_html ]; then
theme=$public_html/wp-content/themes
if [ -d $theme ]; then
child=$(ls -d $theme/*/ | grep -v "$theme\/aquarius" | grep -v "$theme\/twenty*" | grep -v "$theme\/barelycorporate" -m 1)
child=$(ls -d $theme/*/ | grep -v "$theme\/theme-aquarius" | grep -v "$theme\/aquarius" | grep -v "$theme\/twenty*" | grep -v "$theme\/barelycorporate" -m 1)
cdlc $child
else
echo " Can't find theme folder "

Loading…
Cancel
Save