Skip to content

Commit

Permalink
build: correct name of tmp file to be cleaned
Browse files Browse the repository at this point in the history
Signed-off-by: Dylan Turner <dylan.turner@tutanota.com>
  • Loading branch information
blueOkiris committed Aug 24, 2024
1 parent 9af3502 commit 5a5448d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/args.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <variant>
#include <err.hpp>

#define VERSION 3
#define VERSION 4

namespace acbs {
namespace args {
Expand Down
4 changes: 2 additions & 2 deletions src/build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ void acbs::build::clean(const ini::Project &proj) {
std::filesystem::remove_all(proj.project.name);
} catch(...) {}
try {
std::cout << "Removing .hdrfiles/" << std::endl;
std::filesystem::remove_all(".hdrfiles");
std::cout << "Removing .hdrtimes/" << std::endl;
std::filesystem::remove_all(".hdrtimes");
} catch(...) {}
}

Expand Down

0 comments on commit 5a5448d

Please sign in to comment.