Skip to content

Commit 458e361

Browse files
authored
Fix xtask errors after upgrading (#11)
Fix "this function takes 1 argument but 0 arguments were supplied" error.
1 parent 1cf2e21 commit 458e361

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xtask/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ fn main() -> Result<(), anyhow::Error> {
3434
Some(("ci", _)) => tasks::ci(),
3535
Some(("docs", _)) => tasks::docs(),
3636
Some(("powerset", _)) => tasks::powerset(),
37-
Some(("bloat-deps", _)) => tasks::bloat_deps(),
38-
Some(("bloat-time", _)) => tasks::bloat_time(),
37+
Some(("bloat-deps", _)) => tasks::bloat_deps("backpack"),
38+
Some(("bloat-time", _)) => tasks::bloat_time("backpack"),
3939
_ => unreachable!("unreachable branch"),
4040
};
4141
res

0 commit comments

Comments
 (0)