Skip to content

Commit ec190c2

Browse files
committed
update cargo dependency name
1 parent e9fda6b commit ec190c2

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
colored = "2"
8-
dvs-interactive-cli-rs = { git = "https://codeberg.org/dvs/dv-interactive-cli-rs.git", branch = "main" }
8+
dvs-interactive-cli-rs = { git = "https://codeberg.org/dvs/dvs-interactive-cli-rs.git", branch = "main" }
99

1010
[profile.release]
1111
opt-level = "z"

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use dvs_interactive_cli_rs::boolean;
33
use dvs_interactive_cli_rs::input;
44

55
fn main() {
6-
let path_to_logo = input("Path to mod/script logo", &true, "FULL PATH. ADD / AT THE END");
7-
let path_to_banner = input("Path to mod/script banner", &true, "FULL PATH. ADD / AT THE END");
6+
let path_to_logo = input("Path to mod/script logo", &true, "FULL PATH.");
7+
let path_to_banner = input("Path to mod/script banner", &true, "FULL PATH.");
88
let is_open_source = boolean("Is it open source?");
99
let can_mess_with_computer = boolean("Can it mess with your computer?");
1010
let title = input("Input the title of your mod/script", &true, "Your epic cool mod");
@@ -45,7 +45,7 @@ fn main() {
4545
let path_to_export = input("Where should we export it?", &true, "FULL PATH. ADD / AT THE END");
4646
let continue_question = boolean("Do you wish to continue?");
4747

48-
if continue_question == "yes" {
48+
if continue_question == "y" || continue_question == "Y" {
4949
initialize_everything::init_yes(
5050
&path_to_logo,
5151
&path_to_banner,

0 commit comments

Comments
 (0)