Skip to content

Commit

Permalink
Fix pdxName not returning the correct pdx name in nimble simulate
Browse files Browse the repository at this point in the history
  • Loading branch information
samdze committed Apr 11, 2024
1 parent 44898f0 commit 03c11ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/playdate/build/utils.nim
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ proc nimble*(args: varargs[string]) =
exec @["nimble"].concat(args.toSeq).join(" ")

proc pdxName*(): string =
## The name of the pdx file to generate
projectDir() & ".pdx"
## The name of the pdx file to generate, same as the project folder name
getCurrentDir().splitPath.tail & ".pdx"

proc sdkPath*(): string =
## Returns the path of the playdate SDK
Expand Down

0 comments on commit 03c11ea

Please sign in to comment.