Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 23, 2023
1 parent 2ea7209 commit b2b6709
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Play any Carimbo game">
<meta name="keywords" content="Game Engine, WebAssembly, C++, SDL, Lua, Carimbo">
<meta name="author" content="Rodrigo Delduca">
<base href="{{ .BaseURL }}" />
<link rel="icon" href="favicon.ico" />
<link rel="preload" href="bundle.7z" as="fetch" type="application/octet-stream" crossorigin />
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func getRuntime(runtime string) (Runtime, error) {
}

resp, err := client.Do(req)
if err != nil || resp == nil {
if err != nil {
return Runtime{}, fmt.Errorf("http get error: %w", err)
}
defer resp.Body.Close()
Expand Down

0 comments on commit b2b6709

Please sign in to comment.