Skip to content
Open
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
8 changes: 4 additions & 4 deletions doc/api/single-executable-applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ binary.
* On macOS:

```bash
codesign --sign - hello
codesign --sign - sea
```

* On Windows (optional):
Expand All @@ -80,22 +80,22 @@ binary.
binary would still be runnable.

```powershell
signtool sign /fd SHA256 hello.exe
signtool sign /fd SHA256 sea.exe
```

5. Run the binary:

* On systems other than Windows

```console
$ ./hello world
$ ./sea world
Hello, world!
```

* On Windows

```console
$ .\hello.exe world
$ .\sea.exe world
Hello, world!
```

Expand Down
Loading