We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb8f11e commit 6e77795Copy full SHA for 6e77795
lib/services/runner/console_runner_service.dart
@@ -1,4 +1,3 @@
1
-
2
import 'package:terrun/core/core.dart';
3
import 'package:terrun/services/runner/runner_service.dart';
4
import 'package:terrun/services/shell/shell_service.dart';
@@ -15,7 +14,7 @@ class ProcessRunnerService implements RunnerService {
15
14
final result = await _shell.run(preRun.isNotEmpty ? '$preRun && $command' : command);
16
17
if (postRun.isNotEmpty) {
18
- final _ = _shell.run(postRun);
+ final _ = await _shell.run(postRun);
19
}
20
21
if (result.exitCode == 0) {
pubspec.yaml
@@ -1,6 +1,6 @@
name: terrun
description: terrun - efficient terminal runner
-version: 0.0.13
+version: 0.0.14
repository: https://github.com/mikeborodin/menusc
5
6
environment:
0 commit comments