Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
release v8.0.1
Browse files Browse the repository at this point in the history
Merge pull request #26 from ncreuschling/hotfix/gh25-fix_io_error_in_assets_add_default_content_task

- fixes IO error for assets:add_default_content task
  • Loading branch information
ncreuschling authored May 15, 2017
2 parents 77af8a3 + 2ae125b commit f03ffc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/dkdeploy/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Core
class Version
MAJOR = 8
MINOR = 0
PATCH = 0
PATCH = 1

def self.to_s
[MAJOR, MINOR, PATCH].join('.')
Expand Down
6 changes: 2 additions & 4 deletions lib/dkdeploy/tasks/assets.rake
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,8 @@ namespace :assets do
asset_default_content = ask_array_variable(args, :asset_default_content, 'questions.asset_default_content')

config_path = File.join 'config', 'preseed'
on release_roles :web do
asset_default_content.each do |asset|
assets_upload asset, config_path
end
asset_default_content.each do |asset|
assets_upload asset, config_path
end
end
end

0 comments on commit f03ffc3

Please sign in to comment.