Codebase list pgpdump / d5e1e12
fix shellcheck warnings a1346054 1 year, 9 months ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 #!/bin/sh
11
2 cd "$(dirname "$0")"
2 cd "$(dirname "$0")" || exit 1
33
44 [ X"$1" = X-v ] && verbose=true || verbose=false
55 status=0
1616 fi
1717 done
1818
19 exit $status
19 exit "$status"