mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 13:24:12 +01:00
12 lines
306 B
Bash
12 lines
306 B
Bash
#!/bin/bash
|
|
#
|
|
# Rebuild the iTop Lexer / Parser
|
|
# PEAR is required to build (really?)
|
|
# 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
|
|
|