diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-09-13 04:12:20 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-09-13 04:12:20 +0300 |
commit | f75ee9a8816824683e22aee2790f43a9fc43c613 (patch) | |
tree | 8eb48525bcd0291668d56d0bc4e8a0467467b9b3 /scripts | |
parent | bd2058dc1aa88ac5690184f85a1e5051b12cd573 (diff) | |
parent | 20a875e2e86e73d13ec256781a7d55a7885868ec (diff) | |
download | linux-f75ee9a8816824683e22aee2790f43a9fc43c613.tar.xz |
Merge branch 'device-properties' into acpi-soc
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get_maintainer.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 49a00d54b835..aed4511f0304 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -2136,9 +2136,11 @@ sub vcs_file_exists { my $cmd = $VCS_cmds{"file_exists_cmd"}; $cmd =~ s/(\$\w+)/$1/eeg; # interpolate $cmd - + $cmd .= " 2>&1"; $exists = &{$VCS_cmds{"execute_cmd"}}($cmd); + return 0 if ($? != 0); + return $exists; } |