fix a crash in the embedded rust build process (bad quotes)
This commit is contained in:
parent
7f4f502067
commit
2af276e160
3 changed files with 3 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -22,7 +22,7 @@ checksum = "b03f7fbd470aa8b3ad163c85cce8bccfc11cc9c44ef12da0a4eddd98bd307352"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spl"
|
name = "spl"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"multicall",
|
"multicall",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "spl"
|
name = "spl"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Stack Pogramming Language: A simple, concise scripting language."
|
description = "Stack Pogramming Language: A simple, concise scripting language."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -158,7 +158,7 @@ impl RustAppBuilder {
|
||||||
if let Err(x) = start_file(
|
if let Err(x) = start_file(
|
||||||
&args()
|
&args()
|
||||||
.nth(1)
|
.nth(1)
|
||||||
.unwrap_or_else(|| find_in_splpath(default_file).expect("no file to be run")),
|
.unwrap_or_else(|| find_in_splpath("default_file").expect("no file to be run")),
|
||||||
) {
|
) {
|
||||||
println!("{x:?}");
|
println!("{x:?}");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue