See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # #!/bin/bash | |
| GITBOOK_REP=$1 | |
| SUMMARY_FILE="SUMMARY.md" | |
| echo $OUTPUT_FILE | |
| if [ -d "$GITBOOK_REP" ]; then | |
| echo "Entering directory '$GITBOOK_REP'..." | |
| cd $GITBOOK_REP |