mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00
12 lines
162 B
Bash
Executable File
12 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
preprocess() {
|
|
erb $1.erb > $1.tmp
|
|
mv $1.tmp $1
|
|
}
|
|
|
|
preprocess msgpack/type/tuple.hpp
|
|
preprocess msgpack/type/define.hpp
|
|
preprocess msgpack/zone.hpp
|
|
|