Skip to content

Commit

Permalink
chore: fix dart analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicatarra committed Jun 24, 2024
1 parent f49946b commit 4eb3453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/melos/lib/src/common/persistent_shell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class PersistentShell {
'($echoSuccess) else ($echoFailure)';
}

return 'eval "$echoCommand && $echoRunning && $command && if [ \$? -eq 0 ]; '
'then $echoSuccess; else $echoFailure; fi"';
return 'eval "$echoCommand && $echoRunning && $command && if [ \$? -eq 0 ];'
' then $echoSuccess; else $echoFailure; fi"';
}
}

0 comments on commit 4eb3453

Please sign in to comment.