Skip to content

Commit

Permalink
updated space
Browse files Browse the repository at this point in the history
  • Loading branch information
ojsi committed Jan 11, 2025
1 parent be349b2 commit d36601f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/backend/storeManagers/nile/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ export default async function setup(
const exeArguments = action.Args ?? []

if (isWindows) {
const command = ['-NoProfile', 'Start-Process', '-FilePath', action.Command]
const command = [
'-NoProfile',
'Start-Process',
'-FilePath',
action.Command
]
if (exeArguments.length) {
command.push('-ArgumentList', ...exeArguments)
}
Expand Down

0 comments on commit d36601f

Please sign in to comment.