Skip to content

Commit 0190ebf

Browse files
committedDec 25, 2020
set fasmg executables to executable
1 parent e16b84d commit 0190ebf

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed
 

‎tools/fasmg/linux/fasmg

100644100755
File mode changed.

‎tools/fasmg/macos/fasmg

100644100755
File mode changed.

‎tools/fasmg/upgrade_fasmg.sh

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
#!/bin/bash
22

3-
# this script currently only runs on linux.
4-
5-
build_fasmg () {
6-
.tmp/fasmg/fasmg.x64 .tmp/fasmg/source/$1/$3/fasmg.asm $1/$2
7-
chmod -x $1/$2
8-
}
9-
103
cd fasmg-ez80
114
git checkout main
125
git pull origin main
@@ -16,8 +9,12 @@ wget --no-verbose https://flatassembler.net/$(wget --no-verbose https://flatasse
169
unzip -od .tmp/fasmg .tmp/fasmg.zip
1710
chmod +x .tmp/fasmg/fasmg.x64
1811

19-
build_fasmg linux fasmg x64
20-
build_fasmg windows fasmg.exe
21-
build_fasmg macos fasmg x64
12+
.tmp/fasmg/fasmg.x64 .tmp/fasmg/source/linux/x64/fasmg.asm linux/fasmg
13+
.tmp/fasmg/fasmg.x64 .tmp/fasmg/source/windows/fasmg.asm windows/fasmg.exe
14+
.tmp/fasmg/fasmg.x64 .tmp/fasmg/source/macos/x64/fasmg.asm macos/fasmg
15+
16+
chmod +x windows/fasmg.exe
17+
chmod +x macos/fasmg
18+
chmod +x linux/fasmg
2219

2320
rm -rf .tmp

‎tools/fasmg/windows/fasmg.exe

100644100755
File mode changed.

0 commit comments

Comments
 (0)
Please sign in to comment.