Skip to content

Commit

Permalink
Lune 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Feb 10, 2024
1 parent 8b8c26f commit 9c89084
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Compile_Lync.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
cd %~dp0
lune Compile_Plugin.lua
lune run Compile_Plugin.lua
cd Lync
del lync-win-x64.exe
del lync-macos-x64
Expand Down
4 changes: 2 additions & 2 deletions Lync/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ function runJobs(event, localPath) {

// Validate loadstrings
if (DEBUG) console.log('Validating loadstrings . . .')
const validationStatus = spawnSync(lunePath, [ `${buildScriptPath}` ], {
const validationStatus = spawnSync(lunePath, [ 'run', `${buildScriptPath}` ], {
cwd: process.cwd(),
detached: false,
stdio: 'inherit'
Expand All @@ -1039,7 +1039,7 @@ function runJobs(event, localPath) {

// Build RBXL
if (DEBUG) console.log('Building RBXL . . .')
const build = spawn(lunePath, [ `${buildScriptPath}` ], {
const build = spawn(lunePath, [ 'run', `${buildScriptPath}` ], {
cwd: process.cwd(),
detached: false,
stdio: 'inherit'
Expand Down
4 changes: 2 additions & 2 deletions Sample Project/aftman.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

# To add a new tool, add an entry to this table.
[tools]
lune = "filiptibell/lune@0.7.11"
rbxcloud = "Sleitnick/rbxcloud@0.5.0"
lune = "filiptibell/lune@0.8.0"
rbxcloud = "Sleitnick/rbxcloud@0.6.1"

0 comments on commit 9c89084

Please sign in to comment.