fix: with_project no longer needs a seed
This commit is contained in:
parent
1d462314c4
commit
033cc26313
|
@ -23,7 +23,7 @@ pub fn exec(
|
||||||
name,
|
name,
|
||||||
}: Args,
|
}: Args,
|
||||||
) -> miette::Result<()> {
|
) -> miette::Result<()> {
|
||||||
with_project(directory.as_deref(), 0, false, |p| {
|
with_project(directory.as_deref(), false, |p| {
|
||||||
p.compile(Options::default())?;
|
p.compile(Options::default())?;
|
||||||
|
|
||||||
let raw_uplc = p.export(&module, &name)?;
|
let raw_uplc = p.export(&module, &name)?;
|
||||||
|
|
Loading…
Reference in New Issue