Skip to content

Commit

Permalink
arc_extract fix folder generation
Browse files Browse the repository at this point in the history
  • Loading branch information
PredatorCZ committed Apr 18, 2024
1 parent 28b1e61 commit ce18ec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3rd_party/spike
4 changes: 3 additions & 1 deletion toolset/arc_conv/extract_arc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ void AppProcessFile(AppContext *ctx) {
auto ectx = ctx->ExtractContext();
if (ectx->RequiresFolders()) {
for (auto &f : files) {
ectx->AddFolderPath(f.fileName);
AFileInfo inf(f.fileName);
const std::string cFolder(inf.GetFolder());
ectx->AddFolderPath(cFolder);
}

ectx->GenerateFolders();
Expand Down

0 comments on commit ce18ec5

Please sign in to comment.