Skip to content

Commit 4527f35

Browse files
committed
fix: Fixes uv overwriting Rscript
1 parent 8b5ad67 commit 4527f35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl FaucetServerBuilder {
148148
}
149149
pub fn uv(mut self, uv: impl AsRef<OsStr>) -> Self {
150150
log::debug!(target: "faucet", "Using uv command: {:?}", uv.as_ref());
151-
self.rscript = Some(uv.as_ref().into());
151+
self.uv = Some(uv.as_ref().into());
152152
self
153153
}
154154
pub fn quarto(mut self, quarto: impl AsRef<OsStr>) -> Self {

0 commit comments

Comments
 (0)