Skip to content

Commit 8fd2114

Browse files
authored
2.x: Removed regx flags (#211)
* 2.x: Fixed some bits about localgov * 2.x: Getting the latest release available per branch * 2.x: Removed regx flags
1 parent a563190 commit 8fd2114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abstracts/base-cmd-abstract.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export default abstract class BaseCmd extends Command {
266266
protected getProjectRunningContainersCeDev(): Array<string> {
267267
const running = this.getProjectRunningContainers();
268268
const ceDev = [];
269-
const regex = /ce-dev.*/gm;
269+
const regex = /ce-dev.*/;
270270
for (const containerName of running) {
271271
const image = execSync(this.dockerBin +
272272
' inspect ' +

0 commit comments

Comments
 (0)