Skip to content

Commit

Permalink
fix: update org option on create app command
Browse files Browse the repository at this point in the history
Fixes Windows apps created with create app command.
  • Loading branch information
ferrarafer committed Sep 12, 2023
1 parent 27f6ec7 commit 699df52
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/services/process_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ProcessService {
name,
'-e',
if (description != null) '--description="$description"',
if (organization != null) '--org="$organization"',
if (organization != null) '--org=$organization',
if (platforms.isNotEmpty) '--platforms=${platforms.join(",")}',
],
);
Expand Down
2 changes: 0 additions & 2 deletions test/services/file_service_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ void main() {
type: kTemplateNameService,
);
final file = await File(ksTestFileName).readAsString();
print('--- file ---');
print(file);
expect(
file.contains('/${recasedContent.snakeCase}') ||
file.contains(' ${recasedContent.pascalCase}'),
Expand Down

0 comments on commit 699df52

Please sign in to comment.