Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
tripodsan committed Jun 27, 2024
1 parent 03cbd25 commit 818f997
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 62 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/codeql.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/helix-deploy",
"version": "11.1.15",
"version": "12.0.0-pre.2",
"description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
"license": "Apache-2.0",
"homepage": "https://github.com/adobe/helix-deploy#readme",
Expand Down
4 changes: 2 additions & 2 deletions src/BaseConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ export default class BaseConfig {
return this;
}

withDirectory(value) {
this.cwd = value === '.' ? process.cwd() : value;
withDirectory(value = '.') {
this.cwd = path.resolve(process.cwd(), value);
return this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default class CLI {

async run(args) {
try {
const res = await this.prepare(args).run();
const res = (await this.prepare(args)).run();
if (res) {
console.log(JSON.stringify(res, null, 2));
}
Expand Down
17 changes: 0 additions & 17 deletions src/template/adapter-utils.js

This file was deleted.

0 comments on commit 818f997

Please sign in to comment.