-
Notifications
You must be signed in to change notification settings - Fork 89
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
Deselect profile problem #977
Labels
bug
Something isn't working
Comments
I'm running into this, too, using Bash and WSL. I think shell-friendly escapes are needed here: |
I found a workaround using the "set +o history" command to disable command history.
|
Ran into this issue just now |
+1 :( The content of envFile in launch.json also has this problem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I deselect profile I get this generated command from the plugin.
[artyom@artyom-vivobook backstage-ai]$ mvn clean -f "/home/artyom/Projects/backstage-ai/pom.xml" -P !spbgut
And error:
bash: !spbgut: event not found
The exclamation mark needs to be escaped in most shells (but not required on Windows)
Profile deselect shoud be
-P '!profile1,profile2'
or
-P-profile1,-profile2 (without whitespace after P)
The text was updated successfully, but these errors were encountered: