Skip to content

Commit

Permalink
Allow numeric ports for proxy sites (#984)
Browse files Browse the repository at this point in the history
Fixes #910 by casting the port to a string and therefore allowing string
concatenation in [z-ray
cleanup](https://github.com/laravel/homestead/blob/master/scripts/homestead.rb#L269)

It's probable that this will occur in other places, i will look around,
but in the meantime, this fixes the most common scenario that is a fresh
installation with its defaults.
  • Loading branch information
roberto-aguilar authored and svpernova09 committed Nov 19, 2018
1 parent 349bb38 commit 1f81dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/homestead.rb
Expand Up @@ -266,7 +266,7 @@ def self.configure(config, settings)
end
else
config.vm.provision 'shell' do |s|
s.inline = 'rm -rf ' + site['to'] + '/ZendServer'
s.inline = 'rm -rf ' + site['to'].to_s + '/ZendServer'
end
end
end
Expand Down

0 comments on commit 1f81dc9

Please sign in to comment.