1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-22 18:00:06 +01:00

grunt fixes

This commit is contained in:
Matthias Kretschmann 2014-01-02 18:13:03 +01:00
parent b72ba69cb7
commit d370b64585

View File

@ -217,7 +217,8 @@ module.exports = function(grunt){
src: '<%= config.src %>/_media/', src: '<%= config.src %>/_media/',
dest: '<%= config.site %>/media', dest: '<%= config.site %>/media',
exclude: ['**/gen'], exclude: ['**/gen'],
syncDestIgnoreExcl: true syncDestIgnoreExcl: true,
args: ['--update']
} }
}, },
// copy build // copy build
@ -232,11 +233,11 @@ module.exports = function(grunt){
deploy: { deploy: {
options: { options: {
syncDest: true, syncDest: true,
compareMode: 'checksum',
src: '<%= config.build %>/', src: '<%= config.build %>/',
dest: 'domains/kremalicious.com/html', dest: 'domains/kremalicious.com/html',
host: 'kremalicious', host: 'kremalicious',
ssh: true, ssh: true,
compareMode: 'checksum',
args: ['--verbose'] args: ['--verbose']
} }
} }