Sublime Forum

Newbie - build issue

#1

I have added a build system to publish my code to a Safari browser. But when I do a build using this build system, all that happens is a blank web page pops up instead of a page with the code I have written. Any idea what I’m doing wrong? Apologies if I’m the thousandth person to ask this question.

0 Likes

#2

Can you post your build system code? You probably are having an issue pointing to the right file.

0 Likes

#3

{ "cmd": "open", "-a", "Safari", "$file"] }

0 Likes

#4

Try this:

{ "cmd": "open", "-a", "/Applications/Safari.app", "$file"] }

0 Likes

#5

Wesbos - I tried that but got the same result. It just opens up a blank web page in my safari browser with no output from my code. Any other ideas?

0 Likes