Skip to content

Commit

Permalink
Merge pull request #9 from petermcneil/bug/failing-ci
Browse files Browse the repository at this point in the history
Update dependencies.sh
  • Loading branch information
petermcneil authored Apr 29, 2019
2 parents c36b117 + f843225 commit 75ba745
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/subtitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 0 additions & 2 deletions scripts/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 75ba745

Please sign in to comment.