mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 09:47:50 +08:00
9 lines
251 B
Ruby
9 lines
251 B
Ruby
desc 'Preparing assets'
|
|
task :prepare_assets do
|
|
dest = ENV["dest"] || CONFIG[:build_destination]
|
|
appsrc = 'webhelp-template/app'
|
|
appdest = 'app'
|
|
|
|
# webhelp template
|
|
RakeFileUtils.cp 'webhelp-template/app/templates/page.html', '_includes'
|
|
end |