vagrant-scp-sync 0.5.28 → 0.5.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf6209e986838ed0df71e3def682be412a7c9bc67272bcd82761533dd4dc9a17
4
- data.tar.gz: b09da588cf177e7b102414f5c1984ad3f5082d8dbc54af7717efb5cfb10444f5
3
+ metadata.gz: 1e6fff32d2f23ee09ce112e39db45b72ee7117720ff2b078562371766080cb67
4
+ data.tar.gz: d8c68a712df3172bca3e79fb0efe992d8b49018b1e61c2676196b8f28e6c4b8b
5
5
  SHA512:
6
- metadata.gz: bbdc62a90063f5c4592826cb26c98848d88de8adfbce15249d329c07a5d62211b3091a6a5adf807faba350f042463f3c31a4b0023febabef7fb7eacf6a87ea4c
7
- data.tar.gz: 8521432666f398a5fedea53cd5c8043ea16b0ca8c63890dd8fa6d077c334efb209db02fbf70a00d3f18258b00fe8f9b2515c7626ceb0f671fdee8ada9683fa75
6
+ metadata.gz: e10cb802bd3303a68a06865ba1abe2e91d48fdc79e37a6dd76cdada3e25f8b19292d7427b624d93a0e60e10f45fe05b5aeac2f2ded96890d0de19335e490bd72
7
+ data.tar.gz: 95244808474dc8f5710d22c50187b1c3e7c69fee7e23ce13918d6968881db5630e605f1ea3003e761e55a98e83213e6ad453318fc2a4493e9d61b0dcffb0840f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.5.29](https://github.com/STARTcloud/vagrant-scp-sync/compare/v0.5.28...v0.5.29) (2025-01-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * FIle paths with quotes break things, this is an attempt to workaround/fix that ([85420aa](https://github.com/STARTcloud/vagrant-scp-sync/commit/85420aab0ad2a182c2f866278074e046c6efa1c0))
9
+
3
10
  ## [0.5.28](https://github.com/STARTcloud/vagrant-scp-sync/compare/v0.5.27...v0.5.28) (2025-01-15)
4
11
 
5
12
 
@@ -77,10 +77,11 @@ module VagrantPlugins
77
77
 
78
78
  elsif opts[:direction] == :download
79
79
  # For download direction
80
- source = "#{ssh_info[:username]}@#{ssh_info[:host]}:'#{source_files}'"
81
- source = "#{ssh_info[:username]}@#{ssh_info[:host]}:'#{source_files}'/*" if has_trailing_slash_source
80
+ # Use original path for VM side
81
+ source = "#{ssh_info[:username]}@#{ssh_info[:host]}:'#{opts[:map]}'"
82
+ source = "#{ssh_info[:username]}@#{ssh_info[:host]}:'#{opts[:map]}'/*" if has_trailing_slash_source
82
83
 
83
- # Create local target directory without sudo
84
+ # Use expanded path for local side
84
85
  target = "'#{target_files}'"
85
86
  target_dir = target_files
86
87
  target_dir = File.dirname(target_files) unless File.directory?(target_files) || has_trailing_slash_target
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Vagrant
4
4
  module ScpSync
5
- VERSION = '0.5.28'
5
+ VERSION = '0.5.29'
6
6
  NAME = 'vagrant-scp-sync'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-scp-sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.28
4
+ version: 0.5.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Gilbert