diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-08-02 16:23:49 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-08-02 16:31:22 +1200 |
commit | d1c2c6339342083ceee1b96485dfc65893e68dca (patch) | |
tree | f416ef11c71c20ccc6e2eb3800b9f3a0a17d00ab /test/bash | |
parent | Get rid of a lot of comment boilerplate (diff) | |
download | dotfiles-d1c2c6339342083ceee1b96485dfc65893e68dca.tar.gz dotfiles-d1c2c6339342083ceee1b96485dfc65893e68dca.zip |
Move tests and lints into their own scripts
Much nicer than having them embedded in the Makefile. Might do this for
some of the more complex install targets too. Or maybe all of them ...
Diffstat (limited to 'test/bash')
-rwxr-xr-x | test/bash | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/bash b/test/bash new file mode 100755 index 00000000..6f52d522 --- /dev/null +++ b/test/bash @@ -0,0 +1,7 @@ +#!/bin/sh +for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do + if [ -f "$bash" ] && ! bash -n "$bash" ; then + exit 1 + fi +done +printf 'All bash(1) scripts parsed successfully.\n' |