From 2721f214275e353e25915f9c3dfa123a152c1c72 Mon Sep 17 00:00:00 2001 From: gsemaj Date: Mon, 3 May 2021 18:33:14 -0400 Subject: [PATCH] Fix gruntwork file being flushed to root --- src/TableData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TableData.cpp b/src/TableData.cpp index 4621517..bcacd00 100644 --- a/src/TableData.cpp +++ b/src/TableData.cpp @@ -1108,7 +1108,7 @@ void TableData::init() { * Write gruntwork output to file */ void TableData::flush() { - std::ofstream file(settings::GRUNTWORKJSON); + std::ofstream file(settings::TDATADIR + settings::GRUNTWORKJSON); json gruntwork; for (auto& pair : RunningSkywayRoutes) {