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

On Windows 11 the terminal proprt apears before the prints #89

Open
OmriYaHoo opened this issue Jan 13, 2025 · 1 comment
Open

On Windows 11 the terminal proprt apears before the prints #89

OmriYaHoo opened this issue Jan 13, 2025 · 1 comment

Comments

@OmriYaHoo
Copy link

It's a bit hard to explain the issue I'm facing so adding a print screen:
image

You can see that I get a prompt for the next command before the awslocal command has finished running.
This causes several issues when we have several inputs to enter one after another like the configure command of aws cli, in case I want to enter credentials.

image
You can see I got a prompt for the next command even though I'm supposed to be in the context of the first one.

I tried this on 2 different computers, both in CMD and Powershell.
Any ideas?
Is this a bug?

As a workaround, I added this to my Powershell Profile:

function awsl {
    param(
        [Parameter(ValueFromRemainingArguments = $true)]
        [string[]]$Args
    )
    aws @Args --profile local --endpoint-url http://localhost:4566
}

So instead of awslocal I'm my custom awsl at the end of each aws command (not only endpoint but also my custom aws-local profile).

@omri-ratson
Copy link

Could someone from the team please look into this issue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants