This file contains hidden or 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
| #!/bin/sh | |
| # check for how many uncommitted changes we have | |
| # stash changes | |
| # run grunt task | |
| # restore stashed files if anything was stashed | |
| # exit with error if grunt fails | |
| NAME=$(git branch | grep '*' | sed 's/* //') |
This file contains hidden or 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
| """ | |
| Grammar: | |
| ======== | |
| Expression --> AndTerm { OR AndTerm}+ | |
| AndTerm --> Condition { AND Condition}+ | |
| Condition --> Terminal (>,<,>=,<=,==) Terminal | (Expression) | |
| Terminal --> Number or String or Variable | |
| Usage: | |
| ====== |
NewerOlder