Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cli/src/builders/bob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ export class BobProject {
return list;
}

public

public createRules(): OutFiles {
let output: OutFiles = {};
const subdirs = Object.keys(this.dirTargets);
Expand Down
5 changes: 5 additions & 0 deletions cli/src/targets/languages/rpgle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ export async function rpgleTargetCallback(targets: Targets, localPath: string, c
ileObject.headers = [];

cache.includes.forEach((include: IncludeStatement) => {
// Only process includes that are directly in this file, not nested includes
if (include.fromPath !== localPath) {
return;
}

// RPGLE includes are always returned as posix paths
// even on Windows. We need to do some magic to convert here for Windows systems
include.toPath = toLocalPath(include.toPath);
Expand Down