Changeset 6967

Show
Ignore:
Timestamp:
01/02/07 16:41:06 (23 months ago)
Author:
jburke
Message:

Build will fail if the build path before dojo contains a module prefix dir (like if it has src in it)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/buildscripts/buildUtil.js

    r6963 r6967  
    360360 
    361361        //Strip off the prefix path so we can find the real resource and bundle names. 
    362         var prefixStartIndex = srcFileName.indexOf(prefixPath); 
     362        var prefixStartIndex = srcFileName.lastIndexOf(prefixPath); 
    363363        if(prefixStartIndex != -1){ 
    364364                var startIndex = prefixStartIndex + prefixPath.length;