rush/tools/gen-luarc.nu

9 lines
255 B
Plaintext
Raw Normal View History

2025-03-11 13:33:18 +01:00
#!/usr/bin/env nu
def main [] {
const here = path self .
let sample = open ($here | path join luarc_sample.json)
mut updated = $sample | update "workspace.library" { $env.LUACATS_PATH}
$updated | save --force ($here | path join .. .luarc.json)
}