generated from OBJNULL/Dockerized-Rust
Fixed incorrect operation while checking arg
This commit is contained in:
parent
f94f0008b9
commit
894ef92ac3
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ impl Arguments {
|
|||
// Going through all arguments
|
||||
for i in 0..args.len() {
|
||||
// Checking if it's an argument
|
||||
if args[i].starts_with("--") {
|
||||
if !args[i].starts_with("--") {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue