Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/basic_cli/cmd.sp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
pub foreign fn process_run(cmd: Str, args: List[Str]) -> Str ! ExecError uses [Spawn]

/// Run a command and return its exit code.
pub foreign fn process_run_status(cmd: Str, args: List[Str]) -> Int ! ExecError uses [Spawn]
pub foreign fn process_run_status(cmd: Str, args: List[Str]) -> I32 ! ExecError uses [Spawn]

/// Exit the current process with the provided status code.
pub foreign fn exit(code: Int) -> Never uses [Exit]
pub foreign fn exit(code: I32) -> Never uses [Exit]
Loading