Skip to content

Commit

Permalink
fix(project): use org / name as windows name
Browse files Browse the repository at this point in the history
Release-As: 0.2.1
  • Loading branch information
Dich0tomy committed Feb 22, 2025
1 parent eab02d9 commit 731de69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/include/dire/project.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class IReallyWantMyOwnPlatformProjectName
/**
* This class stores the platform-specific project name, which is used as a subpath for the project directories.
*
* It should be obtained via a call to `dire::project::name()`, which returns a name standarized for the build platform.
* It should be obtained via a call to `dire::name()`, which returns a name standarized for the build platform.
*
* If you **REALLY** want to enforce your own name, initialize it by using `IReallyWantMyOwnPlatformProjectName`.
*
Expand Down
2 changes: 1 addition & 1 deletion src/lib/src/dire/windows/project.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ auto name(std::string domain, [[maybe_unused]] std::string org, std::string app_
);

return PlatformProjectName(
Path(detail::trim(std::move(domain))) / Path(detail::trim(std::move(app_name)))
Path(detail::trim(std::move(org))) / Path(detail::trim(std::move(app_name)))
);
}

Expand Down

0 comments on commit 731de69

Please # to comment.