diff options
Diffstat (limited to 'src/cli/create_command.zig')
-rw-r--r-- | src/cli/create_command.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/create_command.zig b/src/cli/create_command.zig index 8264bf771..d661e3aab 100644 --- a/src/cli/create_command.zig +++ b/src/cli/create_command.zig @@ -1665,7 +1665,7 @@ pub const CreateCommand = struct { child.stderr_behavior = .Inherit; const open = @import("../open.zig"); - open.openURL("http://localhost:3000/") catch {}; + open.openURL("http://localhost:3000/"); try child.spawn(); _ = child.wait() catch {}; |