11 lines
101 B
Bash
11 lines
101 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
./generate_ast ast > new.ast.out.ts
|
||
|
|
||
|
mv new.ast.out.ts ast.out.ts
|
||
|
|
||
|
./build.sh
|
||
|
|