Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
libre
keyringer-macosx
Commits
40244408
Commit
40244408
authored
Apr 24, 2016
by
Michał 'rysiek' Woźniak
Browse files
getting rid of the error msgs we don't need nor care about
parent
81d46bd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
keyringer
keyringer
+2
-2
No files found.
keyringer
View file @
40244408
...
...
@@ -140,13 +140,13 @@ function keyringer_dispatch {
# Mac OS X's readlink version does not support '-f'
# fixing that
if
readlink
-f
"
$0
"
;
then
if
readlink
-f
"
$0
"
>
/dev/null 2>&1
;
then
# great, a regular readlink -f will do!
function
readlink-f
{
readlink
-f
"
$@
"
return
$?
}
elif
greadlink
-f
"
$0
"
;
then
elif
greadlink
-f
"
$0
"
>
/dev/null 2>&1
;
then
# ah, we have greadlink available, let's use that then.
function
readlink-f
{
readlink
-f
"
$@
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment