Update libfuzzer-pipeline.groovy

This commit is contained in:
Mike Aizatsky 2016-10-10 09:30:16 -07:00 committed by GitHub
parent 17a65504da
commit efd53bfc64
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ def call(body) {
for (int j = 0; j < files.size(); j++) {
def file = files[j]
if (file.directory) { continue }
if (!new File(file.name).canExecute()) {
if (!new File(d, file.name).canExecute()) {
echo "skipping: $file"
continue
}