Skip to content

Commit

Permalink
added comment steps for update Manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
BalbinoOrtus committed Oct 27, 2021
1 parent c1058f6 commit a8918df
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/cfml/system/util/CompileDSL.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ component accessors=true {
job.start( 'move resources to jar' );
moveResources();
job.complete();
job.start( 'move resources to jar' );
updateManifestFile();
job.complete();
}

job.complete( getVerbose() );
Expand Down Expand Up @@ -339,6 +342,18 @@ component accessors=true {

}

function updateManifestFile() {
/*
1. check if the project has a box.json (we do that lets just set a flag)
2. if it is a box.json
2.1.
3. if it is not a box.json
3.1.
4. independent of 2 or 3 check if we have a struct of values
5. check if we override the original manifest
*/
}

function getJarNameFromPackage( string currentFolder ){
job.addLog( ' jarName is empty ' );
job.addLog( ' currentProjectRoot-> #currentFolder# ' );
Expand Down

0 comments on commit a8918df

Please sign in to comment.