scout 5.6.0.alpha → 5.6.0.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/scout/server.rb +1 -1
- data/lib/scout/version.rb +1 -1
- metadata +1 -1
data/lib/scout/server.rb
CHANGED
|
@@ -91,7 +91,7 @@ module Scout
|
|
|
91
91
|
url = urlify(:plan)
|
|
92
92
|
info "Fetching plan from server at #{url}..."
|
|
93
93
|
headers = {"x-scout-tty" => ($stdin.tty? ? 'true' : 'false')}
|
|
94
|
-
headers["x-scout-roles"] = @roles
|
|
94
|
+
headers["x-scout-roles"] = @roles || ""
|
|
95
95
|
|
|
96
96
|
get(url, "Could not retrieve plan from server.", headers) do |res|
|
|
97
97
|
begin
|
data/lib/scout/version.rb
CHANGED