shaddox 0.0.27 → 0.0.28
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/lib/shaddox/shadow.rb +2 -3
- data/lib/shaddox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d59b021bd1708d0354bdacebb46d31bff97ad9e5
|
|
4
|
+
data.tar.gz: 5775aaf92ba995a645cccbb1abd741e53b5eb2ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c047c92ca6f6ccd142afe0a88ba66f86dd8151498d7dbe306c27fc5112650c2904410f9b12a1c6d8a8ca5608a143e1127a96a3a79e433c817f7d88c98e8d9d9
|
|
7
|
+
data.tar.gz: 48569294f88dc6b5e0fe170c329e357a5a06ea3ca5a76a6fe9525d4594bcb82695ade9c74ff4e4ae7926b7cedca884aae757c162af5cb13c3f2407a1d59c5a1f
|
data/lib/shaddox/shadow.rb
CHANGED
|
@@ -58,7 +58,6 @@ module Shaddox
|
|
|
58
58
|
ensure_parent_dir(source)
|
|
59
59
|
ensure_parent_dir(dest)
|
|
60
60
|
info "Linking '#{source.exp_path}' to '#{dest.exp_path}'", 1 if @debug
|
|
61
|
-
info "... in dir #{Dir.pwd}", 1 if @debug
|
|
62
61
|
FileUtils::ln_s(source.exp_path, dest.exp_path, opts)
|
|
63
62
|
end
|
|
64
63
|
|
|
@@ -116,12 +115,12 @@ module Shaddox
|
|
|
116
115
|
# Link shared paths
|
|
117
116
|
info 'Linking shared paths', 1 if @debug
|
|
118
117
|
repo.shared.each do |shared_path|
|
|
119
|
-
ln_s "
|
|
118
|
+
ln_s "./shared/#{shared_path}", "#{release_path}/#{shared_path}"
|
|
120
119
|
end
|
|
121
120
|
|
|
122
121
|
# Link ./current to the latest release
|
|
123
122
|
info 'Linking current to latest release', 1 if @debug
|
|
124
|
-
ln_s './current'
|
|
123
|
+
ln_s release_path, './current'
|
|
125
124
|
end
|
|
126
125
|
end
|
|
127
126
|
|
data/lib/shaddox/version.rb
CHANGED