blob: 6368ae11692eb9adcca637d6ac4a30a0a0ca04ea [file] [log] [blame]
/*
* ======== getAllFiles ========
*/
function getAllFiles(excludeDirs)
{
if (xdc.om.$name != "rel") {
throw new Error(
"Manifest.getAllFiles can only be called from within a release script");
}
/* clear current files list */
this.files = [];
/* re-populate based on excludeDirs */
/* rcl is alredy loaded by the release model initialization rcl.js */
rcl.getFiles(this.files, excludeDirs);
}