Fix typo in init.luau

This commit is contained in:
marked 2025-03-02 18:35:45 +01:00
parent b52882ef2d
commit f5a58ec756
2 changed files with 10 additions and 10 deletions

View file

@ -33,15 +33,6 @@ jobs:
mv fj /usr/local/bin/fj
chmod +x /usr/local/bin/fj
- name: Authorize Pesde
run: pesde auth login --token "${{ secrets.pesde_auth_token }}"
- name: Authorize Wally
run: |
wally init
wally login --token "${{ secrets.wally_auth_token }}"
rm wally.toml
- name: Synchronize
run: lune run src/init -- sync jecs
@ -75,6 +66,15 @@ jobs:
name: build-${{ steps.read_jecs_version.outputs.JECS_VERSION }}
path: jecs_nightly.rbxm
- name: Authorize Pesde
run: pesde auth login --token "${{ secrets.pesde_auth_token }}"
- name: Authorize Wally
run: |
wally init
wally login --token "${{ secrets.wally_auth_token }}"
rm wally.toml
- name: Release
run: lune run src/init -- release jecs --pesde-scope marked/jecs_nightly --wally-scope mark-marks/jecs-nightly

View file

@ -72,7 +72,7 @@ elseif parsed.command == "release" then
end
elseif parsed.command == "test" then
local fpath = process.cwd
if values.to ~= process.cwd then
if values["in"] ~= process.cwd then
fpath ..= values["in"]
end