mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
14 lines
182 B
Bash
Executable File
14 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! type browser-sync >/dev/null 2>&1; then
|
|
echo 'Need to install browser-sync.'
|
|
exit 1
|
|
fi
|
|
|
|
browser-sync start \
|
|
--no-notify --no-ui \
|
|
--ignore '**/.*' \
|
|
-sw
|
|
|
|
|