2016-03-05 02:08:16 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd $(dirname "${BASH_SOURCE[0]}")
|
|
|
|
export CommandsJSON=$(cat commands.json)
|
|
|
|
|
|
|
|
# replace out the json
|
|
|
|
perl -pe '
|
|
|
|
while (($i = index($_, "{{.CommandsJSON}}")) != -1) {
|
|
|
|
substr($_, $i, length("{{.CommandsJSON}}")) = $ENV{"CommandsJSON"};
|
|
|
|
}
|
2016-03-08 15:32:39 +03:00
|
|
|
' commands.go > commands_gen.go
|
2016-03-05 02:08:16 +03:00
|
|
|
|
|
|
|
# remove the ignore
|
2016-03-08 15:32:39 +03:00
|
|
|
sed -i -e 's/\/\/ +build ignore/\/\/ This file was autogenerated. DO NOT EDIT./g' commands_gen.go
|
|
|
|
rm -rf commands_gen.go-e
|