diff options
author | EuAndreh <eu@euandre.org> | 2021-07-27 12:01:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-27 12:01:21 -0300 |
commit | f428574ec4bf3d65954ed1b0c34ed86730f67647 (patch) | |
tree | 09b05e02770b9bbc0c943a67e13c706d67826e9d /src/git-permalink.in | |
parent | aux/: Stick to 80 columns (diff) | |
download | git-permalink-f428574ec4bf3d65954ed1b0c34ed86730f67647.tar.gz git-permalink-f428574ec4bf3d65954ed1b0c34ed86730f67647.tar.xz |
Remove extra \\ after | in line breaks
Implements #task-1f103822-c865-254c-f6b6-4968f2fb473e.
Diffstat (limited to 'src/git-permalink.in')
-rwxr-xr-x | src/git-permalink.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/git-permalink.in b/src/git-permalink.in index 0f7437c..41e26b4 100755 --- a/src/git-permalink.in +++ b/src/git-permalink.in @@ -65,10 +65,10 @@ MSG_OPEN=\$MSG_OPEN_$lang get_lang() { # LC_MESSAGES="ll_CC.CODESET@modifier" -> ll_CC, where quotes are # optional - locale 2>/dev/null | \ - grep LC_MESSAGES | \ - cut -d. -f1 | \ - cut -d\" -f2 | \ + locale 2>/dev/null | + grep LC_MESSAGES | + cut -d. -f1 | + cut -d\" -f2 | cut -d= -f2 } |