Skip to content

Commit 826e750

Browse files
committed
fix
1 parent 8205c0d commit 826e750

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,16 @@ jobs:
4747
- name: Runs all the stages in the shell
4848
if: matrix.os == 'ubuntu-latest'
4949
shell: bash -e {0}
50+
env:
51+
BUILD_PS3TOOLCHAIN_ONLY: 1
5052
run: |
5153
mkdir $PWD/ps3dev
5254
export PS3DEV=$PWD/ps3dev
5355
export PSL1GHT=$PS3DEV
5456
export PATH=$PATH:$PS3DEV/bin
5557
export PATH=$PATH:$PS3DEV/ppu/bin
5658
export PATH=$PATH:$PS3DEV/spu/bin
57-
./toolchain.sh 1 2 3 4 5 6
59+
./toolchain.sh
5860
5961
- name: Runs all the stages in the shell
6062
if: matrix.os == 'macos-15-intel'

scripts/008-psl1ght.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# psl1ght.sh by Naomi Peori (naomi@peori.ca)
33

44
## Check if we want to skip this step
5-
if [[ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]]; then
5+
if [ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]; then
66
echo "PS3 Toolchain only set. Skipping..."
77
exit 0
88
fi

scripts/009-ps3libraries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# ps3libraries.sh by Naomi Peori (naomi@peori.ca)
33

44
## Check if we want to skip this step
5-
if [[ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]]; then
5+
if [ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]; then
66
echo "PS3 Toolchain only set. Skipping..."
77
exit 0
88
fi

0 commit comments

Comments
 (0)