-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use bash config to fail early
- Loading branch information
1 parent
4de3728
commit 1c521c4
Showing
1 changed file
with
4 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
#!/usr/bin/env sh | ||
|
||
command() | ||
{ | ||
$@ | ||
code=$? | ||
if [ $code -gt 0 ] | ||
then | ||
exit $code | ||
fi | ||
} | ||
set -e | ||
|
||
changed=`git diff --cached --name-only | grep angular-xml.js` | ||
changed=$(git diff --cached --name-only | grep angular-xml.js || :) | ||
|
||
if [ $changed ] | ||
then | ||
command npm test | ||
command npm run compile | ||
npm test | ||
npm run compile | ||
git add angular-xml.min.js | ||
fi | ||
|