mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
11 lines
171 B
Bash
Executable file
11 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
|
|
function preprocess() {
|
|
erb $1.erb > $1.tmp
|
|
mv $1.tmp $1
|
|
}
|
|
|
|
preprocess msgpack/type/tuple.hpp
|
|
preprocess msgpack/type/define.hpp
|
|
preprocess msgpack/zone.hpp
|
|
|