public void NavigateToRoot()
{
// Go back max 2 folders, the bins should be in [aura]/bin/(Debug|Release)
for (int i = 0; i < 3; ++i)
{
if (Directory.Exists("system"))
return;
Directory.SetCurrentDirectory("..");
}
Log.Error("Unable to find root directory.");
CliUtil.Exit(1);
}