Fix pj() function when no project has been specified

This commit is contained in:
Marc Cornellà 2016-08-11 01:44:14 +02:00
parent 7f8851f52f
commit 7d298a3059
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@ pj () {
project=$*
fi
if [[ -z "$project" ]]; then
echo "You have to specify a project name."
return
fi
for basedir ($PROJECT_PATHS); do
if [[ -d "$basedir/$project" ]]; then
$cmd "$basedir/$project"