Skip to content

Commit

Permalink
fix: change start directory when exporting jar
Browse files Browse the repository at this point in the history
  • Loading branch information
Ella-e committed Jan 31, 2024
1 parent 3226f00 commit a518321
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test {
}

application {
mainClass.set("seedu.duke.Duke")
mainClass.set("duke.Duke")
}

shadowJar {
Expand Down
Empty file added data/main.txt
Empty file.
4 changes: 2 additions & 2 deletions src/main/java/duke/ui/UI.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void onEnter() {
}

public void showList(TaskList taskList) {
System.out.println("Here are the duke.tasks in your list:");
System.out.println("Here are the tasks in your list:");
taskList.listTask();
}

Expand Down Expand Up @@ -56,6 +56,6 @@ public void onExit() {
}

public void showTaskListCount(Integer count) {
System.out.println("Now you have "+ count +" duke.tasks in the list." );
System.out.println("Now you have "+ count +" tasks in the list." );
}
}

0 comments on commit a518321

Please sign in to comment.