File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/remixdesktop/src/lib Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -265,11 +265,11 @@ export class InferenceManager implements ICompletions {
265
265
// get platform name and return the path to the python script
266
266
let exec_name = ''
267
267
if ( process . platform === 'win32' ) {
268
- exec_name = 'InferenceServer_ ' + process . platform + '.exe'
268
+ exec_name = 'InferenceServer- ' + process . platform + '.exe'
269
269
} else if ( process . platform === 'linux' ) {
270
- exec_name = 'InferenceServer_ ' + process . platform + '_' + exec_suffix
270
+ exec_name = 'InferenceServer- ' + process . platform + '_' + exec_suffix
271
271
} else if ( process . platform === 'darwin' ) {
272
- exec_name = 'InferenceServer_ ' + 'mac'
272
+ exec_name = 'InferenceServer- ' + 'mac'
273
273
} else {
274
274
throw new Error ( 'Unsupported platform' )
275
275
}
You can’t perform that action at this time.
0 commit comments