Skip to content

Commit

Permalink
fix: applying nologo only for sas.exe
Browse files Browse the repository at this point in the history
Closes #352
  • Loading branch information
allan committed Apr 20, 2023
1 parent 5e32552 commit b4436ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/controllers/internal/Session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ ${autoExecContent}`
session.path,
'-AUTOEXEC',
autoExecPath,
isWindows() ? '-nologo' : '',
process.sasLoc!.endsWith('sas.exe') ? '-nologo' : '',
process.sasLoc!.endsWith('sas.exe') ? '-nosplash' : '',
process.sasLoc!.endsWith('sas.exe') ? '-icon' : '',
process.sasLoc!.endsWith('sas.exe') ? '-nodms' : '',
Expand Down

0 comments on commit b4436ba

Please sign in to comment.