Skip to content

Commit 3c52923

Browse files
committed
DO NOT MERGE: Debug
1 parent ac8a3bc commit 3c52923

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

packages/dart_release/lib/utils/process.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Future<ProcessResult> runProcess(
1212
Encoding? stderrEncoding = systemEncoding,
1313
bool printCall = false,
1414
}) async {
15-
if (printCall) {
15+
if (printCall || true) {
1616
print('$executable ${arguments.join(' ')}');
1717
}
1818
final result = await Process.run(
@@ -67,7 +67,7 @@ Future<ProcessResult> runBash(
6767
Encoding? stderrEncoding = systemEncoding,
6868
bool printCall = false,
6969
}) async {
70-
if (printCall) {
70+
if (printCall || true) {
7171
print('$executable ${arguments.join(' ')}');
7272
}
7373
final result = await Process.run(

packages/flutter_release/pubspec.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ dependencies:
1313
args: ^2.4.2
1414
collection: ^1.18.0
1515
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
1721
pubspec_parse: ^1.3.0
1822
pub_semver: ^2.1.4
1923
path: ^1.9.1

0 commit comments

Comments
 (0)