mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 08:14:00 +08:00
92aa7e7c96
old-commit-hash: 25d18afad5
14 lines
225 B
Bash
Executable File
14 lines
225 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd ../../generator/
|
|
|
|
# run generator
|
|
./generator.py
|
|
|
|
if [ -n "$(git status --untracked-files=no --porcelain)" ]; then
|
|
echo "Unexpected changes after running generator.py";
|
|
exit 1
|
|
else
|
|
echo "Success";
|
|
fi
|