Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-orr committed Jul 23, 2024
1 parent 39fc85b commit 6f05905
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
use std::path::PathBuf;

use cargo_zigbuild::Zig;

pub async fn zig() -> anyhow::Result<()> {
pub async fn dll_tool() -> anyhow::Result<()> {
let mut args = std::env::args().collect::<Vec<_>>();

if let Some(first) = args.first() {
Expand Down
2 changes: 1 addition & 1 deletion dexterous_developer_cli/src/incremental_dlltool.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dexterous_developer_builder::incremental_builder::dll_tool::zig().await
dexterous_developer_builder::incremental_builder::dll_tool::dll_tool().await
}

0 comments on commit 6f05905

Please sign in to comment.