OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/sh |
Isaac (away)
2013/07/29 08:15:10
These lines look fine.
| |
2 | 2 |
3 [ -e "build/git-hooks/applypatch-msg" ] && exec bash "build/git-hooks/applypatch -msg" "$@" | 3 [ -e "build/git-hooks/applypatch-msg" ] && exec sh "build/git-hooks/applypatch-m sg" "$@" |
Isaac (away)
2013/07/29 08:15:10
Can we exec the script directly -- i.e. remove the
Isaac (away)
2013/07/29 08:18:01
Actually -- I'm pretty confident it is OK to remov
| |
4 exit 0 | 4 exit 0 |
Isaac (away)
2013/07/29 08:24:53
also exit 0 is redundant, can you remove these lin
| |
OLD | NEW |