@@ -206,7 +206,7 @@ bool isGoodOFPath(const fs::path & path) {
206206
207207
208208void updateProject (const fs::path & path, ofTargetPlatform target, bool bConsiderParameterAddons = true ) {
209- // alert("updateProject " + path.string() , 34);
209+ // alert("updateProject " + path.string() , 34);
210210 // bConsiderParameterAddons = do we consider that the user could call update with a new set of addons
211211 // either we read the addons.make file, or we look at the parameter list.
212212 // if we are updating recursively, we *never* consider addons passed as parameters.
@@ -234,6 +234,7 @@ void updateProject(const fs::path & path, ofTargetPlatform target, bool bConside
234234}
235235
236236void recursiveUpdate (const fs::path & path, ofTargetPlatform target) {
237+ // FIXME: remove
237238 alert (" recursiveUpdate " + path.string () );
238239 if (!fs::is_directory (path)) return ;
239240 vector <fs::path> folders;
@@ -272,8 +273,8 @@ void recursiveUpdate(const fs::path & path, ofTargetPlatform target) {
272273 }
273274 setOFRoot (ofPath);
274275 fs::current_path (path);
275- // alert ("ofRoot " + ofPath.string());
276- // alert ("cwd " + path.string());
276+ // alert ("ofRoot " + ofPath.string());
277+ // alert ("cwd " + path.string());
277278
278279 updateProject (path, target, false );
279280 }
@@ -480,18 +481,18 @@ int main(int argc, char** argv){
480481 return EXIT_USAGE;
481482 }
482483
483- // alert ("ofPath before " + ofPath.string());
484- // alert ("projectPath " + projectPath.string());
484+ // alert ("ofPath before " + ofPath.string());
485+ // alert ("projectPath " + projectPath.string());
485486 if (ofPath.is_relative ()) {
486487 ofPath = fs::canonical (fs::current_path () / ofPath);
487- // alert ("ofPath canonical " + ofPath.string());
488+ // alert ("ofPath canonical " + ofPath.string());
488489 }
489490
490491 if (ofIsPathInPath (projectPath, ofPath)) {
491492 ofPath = fs::relative (ofPath, projectPath);
492493 }
493494 fs::current_path (projectPath);
494- // alert ("ofPath after " + ofPath.string());
495+ // alert ("ofPath after " + ofPath.string());
495496 setOFRoot (ofPath);
496497 }
497498
0 commit comments