File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Future<ProcessResult> runProcess(
12
12
Encoding ? stderrEncoding = systemEncoding,
13
13
bool printCall = false ,
14
14
}) async {
15
- if (printCall) {
15
+ if (printCall || true ) {
16
16
print ('$executable ${arguments .join (' ' )}' );
17
17
}
18
18
final result = await Process .run (
@@ -67,7 +67,7 @@ Future<ProcessResult> runBash(
67
67
Encoding ? stderrEncoding = systemEncoding,
68
68
bool printCall = false ,
69
69
}) async {
70
- if (printCall) {
70
+ if (printCall || true ) {
71
71
print ('$executable ${arguments .join (' ' )}' );
72
72
}
73
73
final result = await Process .run (
Original file line number Diff line number Diff line change @@ -13,7 +13,11 @@ dependencies:
13
13
args : ^2.4.2
14
14
collection : ^1.18.0
15
15
flutter_to_debian : ^2.0.2
16
- dart_release : ^0.2.10
16
+ dart_release :
17
+ git :
18
+ url : https://github.com/Oberhauser-Dev/dart_packages.git
19
+ ref : dev
20
+ path : packages/dart_release
17
21
pubspec_parse : ^1.3.0
18
22
pub_semver : ^2.1.4
19
23
path : ^1.9.1
You can’t perform that action at this time.
0 commit comments