fix: with_project no longer needs a seed

This commit is contained in:
rvcas 2024-03-04 13:04:35 -05:00 committed by Lucas
parent 1d462314c4
commit 033cc26313
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ pub fn exec(
name,
}: Args,
) -> miette::Result<()> {
with_project(directory.as_deref(), 0, false, |p| {
with_project(directory.as_deref(), false, |p| {
p.compile(Options::default())?;
let raw_uplc = p.export(&module, &name)?;