911:abfa73c8cfda | 912:a409a606c665 |
---|---|
1 #!/bin/sh | |
2 set -eu | |
3 | |
4 stubexec() { | |
5 local real_bin="$(which -a $(basename $0) | grep -v $0 | head -n 1)" | |
6 if [ -x "$real_bin" ]; then | |
7 exec $real_bin $* | |
8 fi | |
9 } | |
10 | |
11 stubexec $* | |
12 | |
13 cpanm -n 'https://github.com/darold/pgFormatter.git' | |
14 plenv rehash | |
15 | |
16 stubexec $* |