mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-05-31 11:41:14 +03:00
9 lines
415 B
Bash
Executable File
9 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./genMsgId.pl > messageids-temp.h
|
|
diff -abBq messageids-temp.h messageids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f messageids-temp.h messageids.h; else touch -a messageids.h; fi;
|
|
rm -f messageids-temp.h
|
|
./genErrId.pl > errorids-temp.h
|
|
diff -abBq errorids-temp.h errorids.h >/dev/null 2>&1; if [ $? -ne 0 ]; then mv -f errorids-temp.h errorids.h; else touch -a errorids.h; fi;
|
|
rm -f errorids-temp.h
|