File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
18
18
19
19
- Fixed permissions during Magento installation on Windows hosts
20
20
- Fixed issue with Magento compiler on Windows hosts
21
+ - Fixed "stdin: is not a tty" warning
21
22
22
23
### Added
23
24
Original file line number Diff line number Diff line change @@ -69,6 +69,11 @@ Vagrant.configure(VAGRANT_API_VERSION) do |config|
69
69
host_vagrant_dir #7
70
70
]
71
71
72
+ config . vm . provision "fix_no_tty" , type : "shell" , run : "always" do |s |
73
+ s . privileged = false
74
+ s . inline = "sudo sed -i '/tty/!s/mesg n/tty -s \\ &\\ & mesg n/' /root/.profile"
75
+ end
76
+
72
77
config . vm . provision "configure_environment" , type : "shell" do |s |
73
78
s . path = "scripts/provision/configure_environment.sh"
74
79
s . args = shell_script_args
You can’t perform that action at this time.
0 commit comments