fix: building in ci (#201)

This commit is contained in:
Aaryamann Challani 2023-08-09 14:35:47 +05:30 committed by GitHub
parent 99966d1a6e
commit 7110e00674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
use std::io::Cursor;
use std::{fs::File, io::Read, path::Path};
use clap::Parser;
@ -49,6 +50,8 @@ fn main() -> Result<()> {
resources[0].clone(),
resources[1].clone(),
resources[2].clone(),
// TODO: use appropriate tree_config
Cursor::new(""),
)?);
Ok(())
}