Skip to content

Commit 16b6da2

Browse files
committed
- Update the run runners so they use the calculated location paths.
1 parent 77d0282 commit 16b6da2

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"TestBox",
3-
"version":"6.4.0",
3+
"version":"6.3.2",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/testbox-@build.version@.zip",
55
"author":"Ortus Solutions <info@ortussolutions.com>",
66
"slug":"testbox",

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- Update the `run` runners so they use the calculated location paths.
15+
1216
## [6.3.1] - 2025-04-01
1317

1418
### Fixed

run

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
22

3+
# Get the path to the directory where this script is located
4+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5+
36
# Go baby go!
4-
boxlang system/runners/BoxLangRunner.bx $@
7+
boxlang $DIR/system/runners/BoxLangRunner.bx $@

run.bat

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# Call the Runner
2-
boxlang system/runners/BoxLangRunner.bx
1+
@echo off
2+
setlocal
3+
4+
set "DIR=%~dp0"
5+
6+
boxlang "%DIR%system/runners/BoxLangRunner.bx"

0 commit comments

Comments
 (0)