Skip to content

Commit

Permalink
Provide an empty Options object in all situations
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Oct 5, 2023
1 parent 782473b commit ec80e93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kmake/src/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ export class Project {
static async create(directory: string, to: string, platform: string, korefile: string, retro: boolean, veryretro: boolean) {
Project.platform = platform;
Project.to = path.resolve(to);
let project = await loadProject(path.resolve(directory), null, null, korefile);
let project = await loadProject(path.resolve(directory), null, {}, korefile);
if (retro && project.kore && !project.kincProcessed) {
if (veryretro) {
if (Project.koreDir) {
Expand Down
2 changes: 1 addition & 1 deletion lib/kmake/Project.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ec80e93

Please sign in to comment.