mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
12 lines
134 B
Bash
Executable File
12 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
rm -rf build/data
|
|
mkdir -p build/data
|
|
|
|
GO=${GO-go}
|
|
|
|
echo Running: "${GO}" generate
|
|
"${GO}" generate
|