Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit ced74c8

Browse files
committed
command scripts now support directories w/ spaces. fixes #8
1 parent e300e61 commit ced74c8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/generateSite.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../builder/builder.php -g
3+
php "$DIR/../builder/builder.php" -g

scripts/startAutoReloadServer.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../listeners/contentSyncBroadcasterServer.php
3+
php "$DIR/../listeners/contentSyncBroadcasterServer.php"

scripts/startPageFollowServer.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../listeners/navSyncBroadcasterServer.php
3+
php "$DIR/../listeners/navSyncBroadcasterServer.php"

scripts/startWatcher.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
DIR="$( cd "$( dirname "$0" )" && pwd )"
3-
php $DIR/../builder/builder.php -w
3+
php "$DIR/../builder/builder.php" -w

0 commit comments

Comments
 (0)