File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export async function fixLint(sandboxId: string): Promise<FixLintResult> {
1919 }
2020
2121 const result = await sandbox
22- . runCommand ( "nlx " , [ "ultracite" , "fix" ] )
22+ . runCommand ( "npx " , [ "ultracite" , "fix" ] )
2323 . catch ( ( error : unknown ) => {
2424 throw new Error ( `Failed to run ultracite fix: ${ parseError ( error ) } ` ) ;
2525 } ) ;
@@ -40,7 +40,7 @@ export async function fixLint(sandboxId: string): Promise<FixLintResult> {
4040
4141 // Run check to see if there are remaining issues (non-zero exit = issues remain)
4242 const checkResult = await sandbox
43- . runCommand ( "nlx " , [ "ultracite" , "check" ] )
43+ . runCommand ( "npx " , [ "ultracite" , "check" ] )
4444 . catch ( ( error : unknown ) => {
4545 throw new Error ( `Failed to run ultracite check: ${ parseError ( error ) } ` ) ;
4646 } ) ;
You can’t perform that action at this time.
0 commit comments