From 65e5ee95d50cf674fa858958eed49e33f3b0cdba Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Mon, 12 Sep 2016 13:07:32 +0200 Subject: Recursive mkdir --- tasks/cdn.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tasks') diff --git a/tasks/cdn.js b/tasks/cdn.js index d1c1882..a2bb3a7 100644 --- a/tasks/cdn.js +++ b/tasks/cdn.js @@ -33,8 +33,8 @@ gulp.task('cdn:stage-bower.json', ['clean:cdn'], function() { delete bowerJson.masterOverrides; } - fs.mkdirSync(stagingBasePath); - fs.mkdirSync(stagingPath); + fs.mkdirsSync(stagingBasePath); + fs.mkdirsSync(stagingPath); fs.writeFileSync(stagingPath + '/bower.json', JSON.stringify(bowerJson, null, ' ')); }); -- cgit v1.2.3 0f0f1dc77d02ab93d2e4d619'/> Mirror of redmine code source: https://github.com/redmine/redminewww-data
summaryrefslogtreecommitdiffstats
path: root/app/views/versions/create.js.erb
blob: e6e0bec455a03ad5bed527290b4e81b806034e3a (plain)
1
2
3
hideModal();
<% select = content_tag('select', content_tag('option') + version_options_for_select(@project.shared_versions.open, @version), :id => 'issue_fixed_version_id', :name => 'issue[fixed_version_id]') %>
$('#issue_fixed_version_id').replaceWith('<%= escape_javascript(select) %>');