Skip to content

Commit

Permalink
Avoid confusing "stdin: is not a tty" message
Browse files Browse the repository at this point in the history
  • Loading branch information
paulproteus committed Oct 10, 2015
1 parent b4bcd21 commit 116f943
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vagrant-spk
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
override.vm.synced_folder ENV["HOME"] + "/.sandstorm", "/host-dot-sandstorm", type: "9p", accessmode: "passthrough"
override.vm.synced_folder "..", "/vagrant", type: "9p", accessmode: "passthrough"
end
# Run ssh with `-t` to avoid the confusing `stdin: is not a tty`
# printout.
config.ssh.pty = true
end
"""

Expand Down

0 comments on commit 116f943

Please sign in to comment.