Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit 5d68e76

Browse files
committed
fix(init-command): fix minimum ram check
1 parent 5067de7 commit 5d68e76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/init.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pub fn init() -> std::io::Result<()> {
9696
AppTyp::Site => 512u64,
9797
AppTyp::Bot => 100u64
9898
};
99-
if *input > min_ram {
99+
if *input >= min_ram {
100100
Ok(())
101101
} else {
102102
Err(format!("The minimum ram amount for {:#?}s is {min_ram}", app.typ))

0 commit comments

Comments
 (0)