Skip to content

Commit

Permalink
Add back third-party stylesheets.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Oct 13, 2024
1 parent e043237 commit bc14c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ namespace mob {
.add_task<mo>("modorganizer-plugin_python");

add_task<parallel_tasks>()
.add_task<stylesheets>()
.add_task<mo>({"modorganizer-tool_configurator", "pycfg"})
.add_task<mo>("modorganizer-fnistool")
.add_task<mo>("modorganizer-basic_games")
Expand All @@ -104,7 +105,7 @@ namespace mob {
.add_task<mo>({"modorganizer", "organizer"});

// other tasks

add_task<stylesheets>();
add_task<translations>();
add_task<installer>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/stylesheets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace mob::tasks {
fs::path stylesheets::release_build_path(const release& r) const
{
// something like build/paper-mono-v2.1
return conf().path().build() / (r.repo + "-" + r.version);
return conf().path().build() / "stylesheets" / (r.repo + "-" + r.version);
}

downloader stylesheets::make_downloader_tool(const release& r,
Expand Down

0 comments on commit bc14c9e

Please sign in to comment.