diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 13:26:58 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-08 13:40:06 -0500 |
commit | f5029f586aa7ee8478817778cda1f0aabf673f70 (patch) | |
tree | a2679b821629b0fe48778c2cf8959f473e576320 /build | |
parent | 3a4a95c7b62cd86dad7c0b47df073f6c44ae6dec (diff) | |
download | jquery-f5029f586aa7ee8478817778cda1f0aabf673f70.tar.gz jquery-f5029f586aa7ee8478817778cda1f0aabf673f70.zip |
Release: ensure files are copied to dist
Diffstat (limited to 'build')
-rw-r--r-- | build/release/dist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/release/dist.js b/build/release/dist.js index 6439f6b31..35d074ae8 100644 --- a/build/release/dist.js +++ b/build/release/dist.js @@ -62,12 +62,12 @@ module.exports = function( Release, complete ) { "dist/jquery.min.js", "dist/jquery.min.map" ].forEach( function( file ) { - shell.cp( Release.dir.repo + "/" + file, distFolder ); + shell.cp( "-f", Release.dir.repo + "/" + file, distFolder ); } ); // Copy other files files.forEach( function( file ) { - shell.cp( "-r", Release.dir.repo + "/" + file, Release.dir.dist ); + shell.cp( "-rf", Release.dir.repo + "/" + file, Release.dir.dist ); } ); // Write generated bower file |