mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
13 lines
No EOL
282 B
Text
13 lines
No EOL
282 B
Text
--> Run stylua to check for formatting errors
|
|
|
|
local process = require("@lune/process")
|
|
|
|
local CommandBuilder = require("./util/exec")
|
|
|
|
process.exit(
|
|
CommandBuilder.new("stylua")
|
|
:withArg(".")
|
|
:withArgs(process.args)
|
|
:withStdioStrategy("forward")
|
|
:exec().code
|
|
) |