Skip to content

Commit 5343def

Browse files
committed
2.x: Removed regx flags
1 parent a0dfec6 commit 5343def

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)