diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-07-13 15:01:33 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-07-13 15:01:33 -0400 |
commit | c44dd7775b387094d8c921c7e839e3c266e4f2c8 (patch) | |
tree | ee4f0c0cbd9e6f596221fee02c116d2d5675884f /build/release/dist.js | |
parent | a2ae215d999637e8d9d0906abcbf6b1ca35c8e6e (diff) | |
download | jquery-c44dd7775b387094d8c921c7e839e3c266e4f2c8.tar.gz jquery-c44dd7775b387094d8c921c7e839e3c266e4f2c8.zip |
Release: properly set the dist remote when it's a real release
Diffstat (limited to 'build/release/dist.js')
-rw-r--r-- | build/release/dist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/release/dist.js b/build/release/dist.js index 7d134b429..f17ea4ba7 100644 --- a/build/release/dist.js +++ b/build/release/dist.js @@ -4,7 +4,7 @@ module.exports = function( Release, complete ) { fs = require( "fs" ), shell = require( "shelljs" ), pkg = require( Release.dir.repo + "/package.json" ), - distRemote = Release.remote.replace( "jquery", "jquery-dist" ), + distRemote = Release.remote.replace( "jquery.git", "jquery-dist.git" ), // These files are included with the distrubtion files = [ "src", |