diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-08-02 17:18:20 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-08-02 17:18:20 +1200 |
commit | 56fbfe7ec118f737be07ff9b80182706fe7dfd12 (patch) | |
tree | 2f2b9feda82215b944fdd20416bf6858549ed04c /test/bash | |
parent | Spruce up lint-bin and lint-games scripts (diff) | |
download | dotfiles-56fbfe7ec118f737be07ff9b80182706fe7dfd12.tar.gz dotfiles-56fbfe7ec118f737be07ff9b80182706fe7dfd12.zip |
Restore -f test rather than -e test
Because it prevents testing directories, of course
Diffstat (limited to 'test/bash')
-rwxr-xr-x | test/bash | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/bin/sh for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do - [ -e "$bash" ] || continue + [ -f "$bash" ] || continue bash -n "$bash" || exit done printf 'All bash(1) scripts parsed successfully.\n' |