diff options
author | Wolfgang Schupp <w.schupp@a1.net> | 2015-01-02 09:34:42 +0100 |
---|---|---|
committer | Wolfgang Schupp <w.schupp@a1.net> | 2015-01-02 09:34:42 +0100 |
commit | 25de2cd53e7c48787bc211eabacd646ad113642c (patch) | |
tree | f0ab6fc1a04334ceb376d99e9caabdc159a9f93b /tools/Linux/kodi.sh.in | |
parent | ab8dcfcad433dac08cdd741da58bcb3cfe1473d2 (diff) | |
parent | a19fc7efeff335de190923773401f68544116dec (diff) |
Merge pull request #5903 from rbalint/fix-bashism
Fix bashisms in shell scripts
Diffstat (limited to 'tools/Linux/kodi.sh.in')
-rw-r--r-- | tools/Linux/kodi.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Linux/kodi.sh.in b/tools/Linux/kodi.sh.in index b6fc963b7d..2f39f24e6d 100644 --- a/tools/Linux/kodi.sh.in +++ b/tools/Linux/kodi.sh.in @@ -63,7 +63,7 @@ migrate_home() command_exists() { - command -v $1 >/dev/null 2>&1 + command -pv $1 >/dev/null 2>&1 } single_stacktrace() |