Skip to content

Commit

Permalink
Release version v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coder-hugo authored and github-actions[bot] committed Nov 23, 2022
1 parent 49badab commit f69cdda
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9711,7 +9711,7 @@ class Directory {
processTemplateFiles(renderAction, options) {
if (options.copyDirectories) {
const dirPath = path_1.default.join(options.outputDirectory, this.relativePath);
if (this.directories.length > 0 || (this.templateFiles.length > 0 && !fs_1.default.existsSync(dirPath))) {
if ((this.directories.length > 0 || this.templateFiles.length > 0) && !fs_1.default.existsSync(dirPath)) {
fs_1.default.mkdirSync(dirPath, { mode: this.metadata.mode, recursive: this.relativePath == '' });
fs_1.default.chownSync(dirPath, this.metadata.uid, this.metadata.gid);
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action",
"version": "2.0.2",
"version": "2.0.3",
"scripts": {
"lint": "eslint src --ext .ts --max-warnings=0",
"test": "mocha --require ts-node/register src/test/**/*.spec.ts",
Expand Down

0 comments on commit f69cdda

Please sign in to comment.