Skip to content

Commit

Permalink
Revert "rsync respects .gitignore filters"
Browse files Browse the repository at this point in the history
This reverts commit ee9e054 and include
Vagrantfile in the excludes
  • Loading branch information
tralamazza committed Oct 12, 2013
1 parent 920e019 commit 8d08647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vagrant-aws/action/sync_folders.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def call(env)
# Rsync over to the guest path using the SSH info
command = [
"rsync", "--verbose", "--archive", "-z",
"--exclude-from=.gitignore",
"--exclude", ".vagrant/", "--exclude", "Vagrantfile",
"-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no -i '#{ssh_info[:private_key_path]}'",
hostpath,
"#{ssh_info[:username]}@#{ssh_info[:host]}:#{guestpath}"]
Expand Down

0 comments on commit 8d08647

Please sign in to comment.