Changeset 8607 for branches/0.4/buildscripts/webbuild/index.html
- Timestamp:
- 05/14/07 13:50:20 (20 months ago)
- Files:
-
- 1 modified
-
branches/0.4/buildscripts/webbuild/index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/buildscripts/webbuild/index.html
r7459 r8607 139 139 140 140 //Find out if the build result is already on the server. 141 var cachedBuildUrl = getCachedBuildUrl(dependencyResult .depList);141 var cachedBuildUrl = getCachedBuildUrl(dependencyResult[0].depList); 142 142 dojo.io.bind({ 143 143 //Add an URL marker for the server to know if this is an existence query. … … 152 152 if(httpStatus >= 400){ 153 153 //Build does not exist. Ask server to make it. 154 requestServerBuild(dependencyResult );154 requestServerBuild(dependencyResult[0]); 155 155 }else{ 156 outputBuildResults(dependencyResult );156 outputBuildResults(dependencyResult[0]); 157 157 window.location = "../" + cachedBuildUrl; 158 158 }