8 lines
133 B
Bash
Executable File
8 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
node genStruct.js > struct.go && gofmt -w struct.go && go build . || {
|
|
echo
|
|
echo "Please use node version > 6.0.0"
|
|
}
|
|
|