Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Duplicate Stack Matching #785

Closed
wants to merge 1 commit into from
Closed

Fix Duplicate Stack Matching #785

wants to merge 1 commit into from

Conversation

RXM307
Copy link
Contributor

@RXM307 RXM307 commented Nov 22, 2021

Fix Duplicate Stack Matching where part of the stack name exists in another stack

Fix Duplicate Stack Matching  where part of the stack name exists in another stack
@RXM307 RXM307 requested a review from a team as a code owner November 22, 2021 10:44
@CLAassistant
Copy link

CLAassistant commented Nov 22, 2021

CLA assistant check
All committers have signed the CLA.

@@ -44,7 +44,7 @@
$provider = 'powershell'
} else {
$exec_path = [ '/bin', '/usr/bin', ]
$check_stack = "${docker_command} ls | grep ${stack_name}"
$check_stack = "${docker_command} ls | grep '${stack_name} '"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a whitespace here after the stack name interpolation.. should it be:

Suggested change
$check_stack = "${docker_command} ls | grep '${stack_name} '"
$check_stack = "${docker_command} ls | grep '${stack_name}'"

@chelnak
Copy link
Contributor

chelnak commented May 4, 2022

@RXM307 Could you rebase your PR and resolve the conflicts in stack.pp please?

@chelnak
Copy link
Contributor

chelnak commented May 30, 2022

Closed as this will now be progressed in #836

Thank you for identifying this issue!

@chelnak chelnak closed this May 30, 2022
LukasAud added a commit that referenced this pull request May 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants