-
Notifications
You must be signed in to change notification settings - Fork 147
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
Conversation
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.
6ebbfb2
to
9074094
Compare
@rtownson there is a problem with this fix: using |
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.
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.
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.
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.
Fix a
Windows PowerShell
andgit 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.