mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
13 lines
358 B
Bash
13 lines
358 B
Bash
#!/bin/bash
|
|
#
|
|
# Rebuild the iTop Lexer / Parser
|
|
# PEAR is required to build (really?)
|
|
# PHP 8.0+ is not supported by the parser generator
|
|
# Launch this batch from the core/oql/build directory
|
|
# with ./build.bash
|
|
#
|
|
php PHP/LexerGenerator/cli.php ../oql-lexer.plex
|
|
php PHP/ParserGenerator/cli.php ../oql-parser.y
|
|
php -r "echo date('Y-m-d');" > ../version.txt
|
|
|