Skip to content

Commit 73e9ad0

Browse files
authored
2.x: Removed regx flags (#210)
* 2.x: Using the right conditions to build binaries * 2.x: Update RELEASE file * 2.x: Fixed how the tags are identified to run a new build * 2.x: Fixed tarballs, mising lib folder * 2.x: Fixed some bits about localgov * 2.x: Getting the latest release available per branch * Updated install.sh scrip to get the latest version per branch. Fixed some localgov templates (#189) * 2.x: Fixed some bits about localgov * 2.x: Getting the latest release available per branch * Added Drupal 11 template, removed yarn (#203) * 2.x: Fixed some bits about localgov * 2.x: Getting the latest release available per branch * 2.x: Added drupal11 template. Removed .travis file * 2.x: Added Drupal 11 template * 2.x: Updated references with 2.x-devel to devel-2.x * 2.x: Removed reference to the branch * 2.x: Enabled corepack to use latest version of yarn * 2.x: Fixed yarn command * 2.x: Using yarn dlx instead of yarn install --global * 2.x: Using again install instead of dlx * 2.x: Removed all references to yarn to make it simple * 2.x: Added missing flag production=false * 2.x: Removed --global because it does not work with --production=false * 2.x: Wiki update, removed yarn, using ce-dev-ce-provision-config 2.x (#209) * 2.x: Fixed some bits about localgov * 2.x: Getting the latest release available per branch * 2.x: Removed yarn from doc and other old stuff * 2.x: Fixed devel tag * 2.x: Using ce-dev-ce-provision-config 2.x * 2.x: Added new param ansible_collection_dir * 2.x: Added missing var to ce_deploy too * 2.x: Removed regx flags
1 parent b681479 commit 73e9ad0

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)