Skip to content

Commit

Permalink
chore(actions): add -- before arguments to pesde tools
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev committed Dec 2, 2024
1 parent 90d7b18 commit 3babacd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .lune/fmt.luau
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,11 @@ local process = require("@lune/process")

local CommandBuilder = require("./exec")

process.exit(CommandBuilder.new("stylua"):withArg("."):withArgs(process.args):withStdioStrategy("forward"):exec().code)
process.exit(
CommandBuilder.new("stylua")
:withArg("--")
:withArg(".")
:withArgs(process.args)
:withStdioStrategy("forward")
:exec().code
)
1 change: 1 addition & 0 deletions .lune/typecheck.luau
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ local CommandBuilder = require("./exec")

process.exit(
CommandBuilder.new("luau-lsp")
:withArg("--")
:withArg("analyze")
:withArgs({ "--settings", ".vscode/settings.json" })
:withArgs({ "--ignore", "'**/.pesde/**'" })
Expand Down

0 comments on commit 3babacd

Please sign in to comment.