Skip to content

Commit 14ab937

Browse files
committed
Update bin scripts
No longer needed. Also uses zxbc as main executable. Zxb will still exits but marked for deprecation.
1 parent cb8c44c commit 14ab937

6 files changed

Lines changed: 2 additions & 60 deletions

File tree

bin/zxb

Lines changed: 0 additions & 12 deletions
This file was deleted.

bin/zxbasm

Lines changed: 0 additions & 18 deletions
This file was deleted.

bin/zxbc

Lines changed: 0 additions & 10 deletions
This file was deleted.

bin/zxbpp

Lines changed: 0 additions & 19 deletions
This file was deleted.

tests/functional/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
FAILED = 0
2323
CURR_DIR = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
2424
ZXBASIC_ROOT = os.path.abspath(os.path.join(CURR_DIR, os.path.pardir, os.path.pardir))
25-
ZXB = os.path.join(ZXBASIC_ROOT, 'zxb.py')
25+
ZXB = os.path.join(ZXBASIC_ROOT, 'zxbc.py')
2626
ZXBASM = os.path.join(ZXBASIC_ROOT, 'zxbasm.py')
2727
ZXBPP = os.path.join(ZXBASIC_ROOT, 'zxbpp.py')
2828

zxb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
import zxb
88

99
if __name__ == '__main__':
10+
print('-' * 48 + '\n* WARNING: zxb is deprecated! Use zxbc instead *\n' + '-' * 48, file=sys.stderr)
1011
sys.exit(zxb.main()) # Exit

0 commit comments

Comments
 (0)