From 7ffa13fdb85ed21fe0f03b1df555149336988724 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Tue, 13 Sep 2016 11:36:23 -0400 Subject: [PATCH] fixing loose paths. --- nucleus/library/tests_filesystem/test_directory_tree.cpp | 2 +- production/paths.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nucleus/library/tests_filesystem/test_directory_tree.cpp b/nucleus/library/tests_filesystem/test_directory_tree.cpp index f0a84671..d413f67d 100644 --- a/nucleus/library/tests_filesystem/test_directory_tree.cpp +++ b/nucleus/library/tests_filesystem/test_directory_tree.cpp @@ -195,7 +195,7 @@ LOG(diffs.text_form()); LOG("reading tree to recreate"); directory_tree dir(path, pattern.s()); ASSERT_TRUE(dir.good(), "makedirs test directory reading"); - filename tmpdir(environment::get("TMP") + "/zz_balfazzaral"); + filename tmpdir(environment::get("GENERATED_DIR") + "/zz_balfazzaral"); LOG(astring("will write to tmp in ") + tmpdir); basis::outcome result = dir.make_directories(tmpdir.raw()); ASSERT_EQUAL(result.value(), common::OKAY, "makedirs should succeed"); diff --git a/production/paths.ini b/production/paths.ini index c7b2ef18..8235e660 100644 --- a/production/paths.ini +++ b/production/paths.ini @@ -1,3 +1,3 @@ [Common] -LogPath=$TMP/logs +LogPath=$GENERATED_DIR/logs -- 2.34.1