Skip to content

Commit

Permalink
Updated ah_other logic to prevent cofig split from being set on local…
Browse files Browse the repository at this point in the history
… env.
  • Loading branch information
mwaarebelloc committed Jan 25, 2024
1 parent 6b384a2 commit 62923c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Robo/Common/EnvironmentDetector.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public static function getEnvironments(): array {
'prod' => self::isProdEnv(),
'ci' => self::isCiEnv(),
'ode' => self::isAhOdeEnv(),
'ah_other' => self::isAhEnv() && !self::isDevEnv() && !self::isStageEnv() && !self::isAhOdeEnv() && !self::isProdEnv(),
'ah_other' => self::isAhEnv() && !self::isLocalEnv() && !self::isDevEnv() && !self::isStageEnv() && !self::isAhOdeEnv() && !self::isProdEnv(),
];
}

Expand Down

0 comments on commit 62923c0

Please sign in to comment.