diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-01 23:56:02 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-01 23:56:02 -0500 |
commit | 72b077ff849dd1c942ae56ccc99dcf88d34f20c9 (patch) | |
tree | bb6d95fbe7fe91e832f2d33554f54449986cea30 | |
parent | ad9b1aa0c4508e821beed63ac08afe691a35f21b (diff) |
jh-checksource: don't use string interpolation with libremessages
-rw-r--r-- | jh-checksource.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jh-checksource.sh b/jh-checksource.sh index e0da294..52e8995 100644 --- a/jh-checksource.sh +++ b/jh-checksource.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net> +# Copyright © 2013-2014 Luke Shumaker <lukeshu@sbcglobal.net> # This work is free. You can redistribute it and/or modify it under the # terms of the Do What The Fuck You Want To Public License, Version 2, # as published by Sam Hocevar. See the COPYING file for more details. @@ -42,7 +42,7 @@ matches_regexp() { } print-human() { - libremessages warning "The source directory `pwd` contains binary files:" + libremessages warning "The source directory %s contains binary files:" "$PWD" sed 's/./ -> &/' } |