File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ int main(int argc, char* argv[])
261261 static_assert (static_cast <int >(runcpp2::CmdOptions::COUNT) == 13 , " Update this" );
262262 ssLOG_BASE (" Usage: runcpp2 [options] [input_file]" );
263263 ssLOG_BASE (" Options:" );
264- ssLOG_BASE (" -r, --[r]eset-cache Deletes all cache and build everything from scratch " );
264+ ssLOG_BASE (" -r, --[r]eset-cache Deletes compiled source files cache only " );
265265 ssLOG_BASE (" -c, --reset-user-[c]onfig Replace current user config with the default one" );
266266 ssLOG_BASE (" -e, --[e]xecutable Runs as executable instead of shared library" );
267267 ssLOG_BASE (" -h, --[h]elp Show this help message" );
Original file line number Diff line number Diff line change @@ -787,9 +787,7 @@ runcpp2::StartPipeline( const std::string& scriptPath,
787787 return PipelineResult::DEPENDENCIES_FAILED;
788788 }
789789
790- if ( currentOptions.count (CmdOptions::RESET_CACHE) > 0 ||
791- currentOptions.count (CmdOptions::REMOVE_DEPENDENCIES) > 0 ||
792- scriptInfoChanged)
790+ if (currentOptions.count (CmdOptions::REMOVE_DEPENDENCIES) > 0 || scriptInfoChanged)
793791 {
794792 if (!CleanupDependencies (profiles.at (profileIndex),
795793 scriptInfo,
You can’t perform that action at this time.
0 commit comments