Skip to content

Commit

Permalink
Merge pull request #5 from calebporzio/check-project-name
Browse files Browse the repository at this point in the history
Check if no project name is present.
  • Loading branch information
mattstauffer authored Jul 18, 2016
2 parents 7875997 + 37baf08 commit 1b12535
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lambo
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/env bash

#### Check for project name argument.
if [ $# -eq 0 ]
then
echo "Please supply a project name."
exit 1
fi

## Error handling
abort()
{
Expand Down

0 comments on commit 1b12535

Please sign in to comment.