We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f2e63 commit 487a326Copy full SHA for 487a326
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+## 1.7.1
2
+
3
+* Specify absolute path to spring binfile when starting the server
4
+ (#478)
5
6
## 1.7.0
7
8
* Auto-restart server when server and client versions do not match
lib/spring/env.rb
@@ -110,7 +110,7 @@ def kill(sig)
110
end
111
112
def server_command
113
- ENV["SPRING_SERVER_COMMAND"] || "spring _#{Spring::VERSION}_ server --background"
+ ENV["SPRING_SERVER_COMMAND"] || "#{File.expand_path("../../../bin/spring", __FILE__)} server --background"
114
115
116
0 commit comments