diff options
author | EuAndreh <eu@euandre.org> | 2021-06-22 18:13:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-22 18:13:11 -0300 |
commit | e002a38f2caa29563e78e3ebddb57dc469905a3c (patch) | |
tree | 9f2f8772427755120d4b9e884342a593abc3eed6 /src/git-permalink.sh.in | |
parent | CHANGELOG.md: Mention integration tests (diff) | |
download | git-permalink-e002a38f2caa29563e78e3ebddb57dc469905a3c.tar.gz git-permalink-e002a38f2caa29563e78e3ebddb57dc469905a3c.tar.xz |
src/git-permalink.sh.in, tests/remotes.sh: Address ShellCheck issues
Diffstat (limited to 'src/git-permalink.sh.in')
-rwxr-xr-x | src/git-permalink.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git-permalink.sh.in b/src/git-permalink.sh.in index 9c26293..6c83787 100755 --- a/src/git-permalink.sh.in +++ b/src/git-permalink.sh.in @@ -134,7 +134,7 @@ while getopts 'phV' flag; do esac done -shift $(($OPTIND - 1)) +shift $((OPTIND - 1)) if [ -z "${1:-}" ]; then printf '%s\n\n' "$MSG_MISSING_FILE" >&2 |