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 #528: Windows PowerShell bug with .exe in app_name #532

Merged
merged 1 commit into from
Nov 19, 2019

Conversation

rtownson
Copy link
Collaborator

@rtownson rtownson commented Apr 18, 2019

Fix a Windows PowerShell and git bash bug where the .exe extension on applications was included in the app_name variable. This resulted in a runtime error where the input file failed to be found. Now we check to see if there is a .exe at the end of the app_name, and remove it.

@rtownson rtownson added the bug label Apr 18, 2019
@rtownson rtownson self-assigned this Apr 18, 2019
Fix a Windows PowerShell bug where the .exe extension on applications
was included in the app_name variable. This resulted in a runtime error
where the input file failed to be found. Now we check to see if there is
a .exe at the end of the app_name, and remove it.
@rtownson rtownson force-pushed the fix-powershell-exe-bug branch from 6ebbfb2 to 9074094 Compare April 18, 2019 21:35
@ftessier ftessier merged commit d364be2 into develop Nov 19, 2019
@ftessier ftessier deleted the fix-powershell-exe-bug branch November 19, 2019 21:42
@ftessier ftessier restored the fix-powershell-exe-bug branch November 21, 2019 16:37
@ftessier
Copy link
Member

ftessier commented Nov 21, 2019

@rtownson there is a problem with this fix: using find_last_of find the last occurence in the string of any of the characters in the .exe set. For example, for the string egs_chamber, the call find_last_of(".exe") returns 9, matching the last e in egs_chamber. The method rfind should be used instead (see #331). I have reinstated the branch fix-powershell-exe-bug, can you update and submit as a new pull request? Thanks!

rtownson added a commit that referenced this pull request Nov 21, 2019
Fix a bug that caused any egs++ application to crash immediately when
run. This happened due to a misused of find_last_of instead of rfind
when searching for an extension on the application name.
ftessier pushed a commit that referenced this pull request Nov 21, 2019
Fix a bug that caused any egs++ application to crash immediately when
run. This happened due to a misuse of string method find_last_of instead
of method rfind to reverse-search for the ".exe" extension substring in
the application name.
ftessier pushed a commit that referenced this pull request Nov 21, 2019
Fix a bug that caused any egs++ application to crash immediately when
run. This happened due to a misuse of string method find_last_of instead
of method rfind to reverse-search for the ".exe" extension substring in
the application name.
ftessier pushed a commit that referenced this pull request Nov 21, 2019
Fix a bug that caused any egs++ application to crash immediately when
run. This happened due to a misuse of string method find_last_of instead
of method rfind to reverse-search for the ".exe" extension substring in
the application name.
@ftessier ftessier deleted the fix-powershell-exe-bug branch November 21, 2019 21:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants