Skip to content

Commit 70a531d

Browse files
authored
Merge pull request #1221 from spkenv/fix-spk-runtime-name
Fix spk passing wrong arg to spfs for runtime name
2 parents b9b81ca + 50fe487 commit 70a531d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/spk-cli/common/src/flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl Runtime {
192192
);
193193
args.insert(
194194
0,
195-
std::ffi::CString::new("--name").expect("should never fail"),
195+
std::ffi::CString::new("--runtime-name").expect("should never fail"),
196196
);
197197
}
198198

0 commit comments

Comments
 (0)