Upgraded to new version, running gam now ends terminal session
See original GitHub issueI updated gam with bash <(curl -s -S -L https://git.io/install-gam)
. Now when I run the app, even just gam version
, the terminal session ends. Mac OS 10.13.4. Python 3.6.4 via Anaconda.
In Terminal, the only output is [Process completed]
. It literally closes the terminal window in Hyper.
Happy to provide more info, but not sure how. Is there a verbose mode?
Issue Analytics
- State:
- Created 5 years ago
- Comments:22 (6 by maintainers)
Top Results From Across the Web
Upgraded to new version, running gam now ends terminal ...
I updated gam with bash <(curl -s -S -L https://git.io/install-gam). Now when I run the app, even just gam version, the terminal session...
Read more >Last update completely breaks wine compatibility
Hey everyone. I'd like to preface this post by saying that I understand that Blizzard does not officially support Linux, and that we...
Read more >Windows 11 22H2 new features and changes - Pureinfotech
Alternatively, you can install the new update using a USB ... the menu now includes the “Terminal” entry to open Windows Terminal as...
Read more >MobaXterm Xserver with SSH, telnet, RDP, VNC and X11
Improvement: updated the local terminal environment to the latest version ... Improvement: you can now select the SSH protocol version for each SSH...
Read more >Windows Terminal tips and tricks | Microsoft Learn
In this page, you will find tips and tricks to help improve your Windows Terminal experience.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
just ran into this in our environment as well. commenting out this line in my .bashrc/.bash_profile fixed it:
gam() { "/home/{username}/bin/gam/gam" "$@" ; }
i replaced it with this instead:
alias gam="/home/{username}/bin/gam/gam"
Same issue here after upgrading to gam version 4.5, after reading this issue, I noticed I had the following in my .bashrc file:
gam() { “/home/{username}/bin/gam/gam” “$@” ; }
Removed, and made sure other gam alias was in the same file:
alias gam=“/home/{username}/bin/gam/gam”
and after gam is working ok again.