mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 09:52:35 +00:00
feat(validate-cmd-file): correct validation constants
This commit is contained in:
parent
869619e049
commit
c23b2a4dbd
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ class Renovate {
|
||||||
try {
|
try {
|
||||||
fs.accessSync(
|
fs.accessSync(
|
||||||
configurationFile.value,
|
configurationFile.value,
|
||||||
fs.constants.S_IXUSR | fs.constants.S_IRUSR,
|
fs.constants.R_OK | fs.constants.X_OK,
|
||||||
);
|
);
|
||||||
} catch {
|
} catch {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue