-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix problem when there is no whitespace before the ns prefix in the ns body - adds build.sh for convenience
- Loading branch information
1 parent
bd75bf5
commit a1df6e9
Showing
4 changed files
with
17 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
# runs source-deps and tests and then provided lein target with mranderson | ||
|
||
function check_result { | ||
if [ $? -ne 0 ]; then | ||
echo "FAILED" | ||
exit 1 | ||
fi | ||
} | ||
|
||
lein do clean, source-deps :skip-javaclass-repackage true | ||
check_result | ||
lein with-profile plugin.mranderson/config "$@" |
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
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