We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 471175e + 59654f4 commit 4c78d45Copy full SHA for 4c78d45
.gitignore
@@ -15,3 +15,5 @@ spec/reports
15
test/tmp
16
test/version_tmp
17
tmp
18
+.ruby-gemset
19
+.ruby-version
lib/guard/go/runner.rb
@@ -10,7 +10,9 @@ class GoRunner
10
def initialize(options)
11
@options = options
12
13
- raise "Server file not found. Check your :server option in your Guarfile." unless File.exists? @options[:server]
+ unless @options[:test] && File.exists?(@options[:server])
14
+ raise "Server file not found. Check your :server option in your Guardfile."
+ end
end
def start
0 commit comments