Skip to content

Commit c57f1be

Browse files
committedFeb 15, 2020
fixed issues with build script
1 parent 89bf3c8 commit c57f1be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎compile

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

3+
mkdir -p bin
4+
35
cd src
46

57
echo -e "\e[1m\e[37mGenerating grammer2.5.inc\e[0m"
@@ -13,7 +15,7 @@ echo -e "\e[1m\e[37mAssembling App\e[0m"
1315
spasm grammer.z80 ../bin/grammer.8xk -I ../z80float/single
1416

1517
# Check for an experimental package
16-
if [ ! -f "experimental/experimental.z80" ];then
18+
if [ ! -f "../bin/EXPRMNTL.8xv" ];then
1719
echo -e "\e[1m\e[37mAssembling Experimental Package\e[0m"
1820
spasm experimental/experimental.z80 ../bin/EXPRMNTL.8xv -I single
1921
fi

1 commit comments

Comments
 (1)

NonstickAtom785 commented on Feb 24, 2020

@NonstickAtom785
Contributor

Haha you found the issue in your too?

Please sign in to comment.