Skip to content

Commit

Permalink
Merge pull request #1 from nedbase/bugfix/executable-bit
Browse files Browse the repository at this point in the history
Fixed executable determination
  • Loading branch information
leonboot authored Aug 3, 2021
2 parents 6abbc82 + 11dd251 commit 6c68983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Compiler/PackagesCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private function getRecipeFiles(Recipe $recipe)
}
$files[$file->getRelativePathName()] = [
'contents' => $file->getContents(),
'executable' => is_executable($recipe->getLocalPath().$file->getRelativePathName()),
'executable' => is_executable($file->getPathname()),
];
}

Expand Down

0 comments on commit 6c68983

Please sign in to comment.