Skip to content

Commit be81d77

Browse files
committed
Merge branch 'development'
2 parents c9c3d97 + 16b6da2 commit be81d77

7 files changed

Lines changed: 20 additions & 7 deletions

File tree

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
format_check:
2121
name: Checks Source Code Formatting
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout Repository
2525
uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
prep_next_release:
158158
name: Prep Next Release
159159
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
160-
runs-on: ubuntu-20.04
160+
runs-on: ubuntu-latest
161161
needs: [ build ]
162162
steps:
163163
# Checkout development

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
##########################################################################################
2525
format:
2626
name: Code Auto-Formatting
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v4
3030

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.3.1",
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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Fixed
1515

16+
- Update the `run` runners so they use the calculated location paths.
17+
18+
## [6.3.1] - 2025-04-01
19+
20+
### Fixed
21+
1622
- Fixed a typo in BaseReporter
1723

1824
## [6.3.0] - 2025-03-31

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)