Skip to content

Commit

Permalink
Fix the error that cannot create JavaFX projects (#1004)
Browse files Browse the repository at this point in the history
Signed-off-by: Sheng Chen <[email protected]>
  • Loading branch information
jdneo authored Oct 23, 2023
1 parent 45a81fa commit 3b293da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/archetype/ArchetypeModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class ArchetypeModule {

const success: boolean = await runSteps(steps, metadata);
if (success) {
if (metadata.archetype) {
if (metadata.archetypeArtifactId && metadata.archetypeGroupId && metadata.archetypeVersion) {
await executeInTerminalHandler(metadata);
} else {
await createBasicMavenProject(metadata);
Expand Down

0 comments on commit 3b293da

Please sign in to comment.