Skip to content

Commit 560bea0

Browse files
committed
Move into shell script instead
1 parent 0c7b980 commit 560bea0

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,7 @@ jobs:
4848
4949
- name: Install Lwtools
5050
run: |
51-
mkdir -p lwtools
52-
cd lwtools
53-
wget www.lwtools.ca/releases/lwtools/lwtools-4.24.tar.gz
54-
tar xvf lwtools-4.24.tar.gz
55-
cd lwtools-4.24/
56-
sudo make install
51+
sudo bash ./.github/workflows/lwtools.sh
5752
5853
- name: Build NitrOS9
5954
run: |

.github/workflows/lwtools.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
#
3+
# Build lwtools from source
4+
#
5+
mkdir -p lwtools
6+
cd lwtools
7+
wget http://www.lwtools.ca/releases//lwtools/lwtools-4.24.tar.gz
8+
tar xvf lwtools-4.24.tar.gz
9+
cd lwtools-4.24/
10+
sudo make install

0 commit comments

Comments
 (0)