Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
  • Loading branch information
vvoland committed Nov 6, 2024
1 parent ce839e8 commit 62e55fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/docker/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class Install {
if (Util.isDirectory(path.join(extractFolder, 'docker'))) {
extractFolder = path.join(extractFolder, 'docker');
}
core.debug(`docker.Install.download extractFolder: ${extractFolder}`);
core.info(`docker.Install.download extractFolder: ${extractFolder}`);
return extractFolder;
}

Expand Down Expand Up @@ -181,6 +181,7 @@ export class Install {
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
files.forEach(function (file, index) {
core.info(`Fixing perms for ${file}`);
fs.chmodSync(path.join(extractFolder, file), '0755');
});
});
Expand Down

0 comments on commit 62e55fb

Please sign in to comment.