Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Shea <connor.james.shea@gmail.com>2017-07-19 00:17:35 +0300
committerConnor Shea <connor.james.shea@gmail.com>2017-07-19 00:17:35 +0300
commitae1bb7535bda4be370f50ae47bd8e29ef8fe620b (patch)
tree2c3f13ed34209a50221adb1f3354815f55b5fc20 /Guardfile
parent573fdd986ef9a04d65670c225d9e6354edf8c3a4 (diff)
Fix Guardfile for macOS.
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index dcc1009d..3aa7cfcd 100644
--- a/Guardfile
+++ b/Guardfile
@@ -19,5 +19,7 @@ guard 'nanoc' do
watch('nanoc.yaml') # Change this to config.yaml if you use the old config file name
watch('Rules')
watch(%r{^(content|layouts|lib)/.*$})
- notification :libnotify, display_message: false
+ if (RUBY_PLATFORM == "i686-linux")
+ notification :libnotify, display_message: false
+ end
end