Skip to content

Commit de9ebab

Browse files
authored
fix: add bundle being broken (#102)
Looks like it needs a shell.
1 parent 6586528 commit de9ebab

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.3.0
2+
* Fixed a bug where adding bundles to a project did not work.
3+
14
## v2.2.1
25
* Fixed an issue with the extension not locating the Apama installation when executed in a Docker development container, and on Windows.
36

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "apama-extensions",
44
"displayName": "Apama",
55
"description": "Support for writing Apama Streaming Analytics applications in EPL",
6-
"version": "2.2.1",
6+
"version": "2.3.0",
77
"license": "Apache-2.0",
88
"repository": {
99
"type": "git",

src/apama_debug/apamadebugconfig.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ async function getInjectionList(
127127
[...cmd.args, "--outputList", "stdout", workspaceFolderPath],
128128
{
129129
encoding: "utf8",
130+
shell: true
130131
},
131132
);
132133

src/apama_util/apamarunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class ApamaRunner {
4141
return await execFilePromisify(
4242
this.command[0],
4343
[...this.command.slice(1), ...args],
44-
{ cwd: workingDir }
44+
{ cwd: workingDir, shell: true }
4545
);
4646
}
4747
} catch (error) {

0 commit comments

Comments
 (0)