vagrant-unison2 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/vagrant-unison2/command.rb +1 -1
- data/lib/vagrant-unison2/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0bb8cd69b57fdfab8986719dbf1c3c44e326388d
|
|
4
|
+
data.tar.gz: cb52ba5c46182e488d489f49e0479e32a0080862
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a58424a3c98657892ae488d834edda9e39aba34a0e8de2b9bc85df2c1242edb0c8da7c6be089bb267253b5d68b5e00e61cdc2011d75d2be9b390c2d1fb1b44a1
|
|
7
|
+
data.tar.gz: ffc4a5cb6dad2d0b27c8168d2a436a63b9f49667576f87a693df14522e48931d21006ff133b4a1f9790f46387f0f0df62342a013119339b9f6af0286cf9e7db8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# 1.0.2 (Feb 2016)
|
|
2
|
+
* fix the cleanup command to delete contents of directory in Vagrant but not the directory itself, because deleteing the directory can mess up e.g. a docker container that has that directory mounted.
|
|
3
|
+
|
|
4
|
+
# 1.0.1
|
|
5
|
+
* Small bugfix release
|
|
6
|
+
|
|
1
7
|
# 1.0.0 (Jan 2016)
|
|
2
8
|
|
|
3
9
|
* Breaking commit on dcosson fork
|
|
@@ -128,7 +128,7 @@ module VagrantPlugins
|
|
|
128
128
|
@env.ui.info "Running #{command} on host"
|
|
129
129
|
system(command)
|
|
130
130
|
|
|
131
|
-
command = "rm -rf #{guest_path}"
|
|
131
|
+
command = "rm -rf #{guest_path}/*"
|
|
132
132
|
@env.ui.info "Running #{command} on guest VM"
|
|
133
133
|
machine.communicate.sudo(command)
|
|
134
134
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-unison2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Laing
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2016-
|
|
13
|
+
date: 2016-02-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: listen
|