From e91690c3c9d73571d26efc6b8d27f535f1ef0e85 Mon Sep 17 00:00:00 2001 From: Peter McNeil Date: Mon, 29 Apr 2019 09:01:23 +0100 Subject: [PATCH 1/2] Update dependencies.sh --- scripts/dependencies.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/dependencies.sh b/scripts/dependencies.sh index db7020a..fdc4cfa 100755 --- a/scripts/dependencies.sh +++ b/scripts/dependencies.sh @@ -47,5 +47,3 @@ printf "%s\n" 'Installing/Updating platform independent code' printDash printf "%s\n" 'Updating Catch2' curl -o "$PARENT_DIR/include/catch/catch.hpp" https://raw.githubusercontent.com/catchorg/Catch2/master/single_include/catch2/catch.hpp -curl -o "$PARENT_DIR/include/catch/contrib/ParseAndAddCatchTests.cmake" \ - https://raw.githubusercontent.com/catchorg/Catch2/master/contrib/ParseAndAddCatchTests.cmake \ No newline at end of file From f8432253bb841b3494c9cda3a853c85fb55e31fa Mon Sep 17 00:00:00 2001 From: Peter McNeil Date: Mon, 29 Apr 2019 09:02:57 +0100 Subject: [PATCH 2/2] C str for spdlog --- lib/src/subtitle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/subtitle.cpp b/lib/src/subtitle.cpp index aee7e3b..f90125d 100644 --- a/lib/src/subtitle.cpp +++ b/lib/src/subtitle.cpp @@ -31,7 +31,7 @@ subtitle::subtitle(const filesystem::path &sp, RW rw) { this->file_path = sp; } else { if(!filesystem::exists(sp.parent_path())) { - log::debug("Directory ({}) doesn't exist - creating it", sp.parent_path()); + log::debug("Directory ({}) doesn't exist - creating it", sp.parent_path().c_str()); filesystem::create_directory(sp.parent_path()); } this->file_path = weakly_canonical(sp);