capistrano-demonz 0.0.11 → 0.0.13
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.
- data/README.md +7 -1
- data/lib/demonz/drupal.rb +2 -0
- data/lib/demonz/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -2,9 +2,15 @@
|
|
2
2
|
|
3
3
|
Capistrano recipes developed for use by [Demonz Media](http://demonzmedia.com).
|
4
4
|
|
5
|
-
**Current version:** 0.0.
|
5
|
+
**Current version:** 0.0.13
|
6
6
|
|
7
7
|
## Changes ##
|
8
|
+
### 0.0.13 ###
|
9
|
+
* Fixes stupid issue where 'chmod' wasn't included in previous fix.
|
10
|
+
|
11
|
+
### 0.0.12 (yanked) ###
|
12
|
+
* Fixed issue where update scripts weren't executable by the group.
|
13
|
+
|
8
14
|
### 0.0.11 ###
|
9
15
|
* Fixed 'current' symlink deletion in deploy:delete_release.
|
10
16
|
|
data/lib/demonz/drupal.rb
CHANGED
@@ -258,6 +258,8 @@ configuration.load do
|
|
258
258
|
update_script_file = File.join(latest_release, 'sites', 'all', 'scripts', release_name, 'update.sh')
|
259
259
|
|
260
260
|
if remote_file_exists?(update_script_file)
|
261
|
+
# Make sure script is executable.
|
262
|
+
run "#{try_sudo} chmod g+x #{update_script_file}"
|
261
263
|
run update_script_file
|
262
264
|
end
|
263
265
|
end
|
data/lib/demonz/version.rb
CHANGED