Skip to content

Commit c3b0216

Browse files
committed
adding http:// prefix to url so it is clickable
1 parent 16d5f4d commit c3b0216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PatternLab/Console/Commands/ServerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function run() {
4949
$host = $port ? $host.":".$port : $host.":8080";
5050

5151
// start-up the server with the router
52-
Console::writeInfo("server started on ".$host.". use ctrl+c to exit...");
52+
Console::writeInfo("server started on http://".$host.". use ctrl+c to exit...");
5353
passthru("cd ".$publicDir." && ".$_SERVER["_"]." -S ".$host." ".$coreDir."/server/router.php");
5454

5555
}

0 commit comments

Comments
 (0)