mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 15:25:57 +00:00
hack: remove bindata generation logic for translations
also, remove generated bindata Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
This commit is contained in:
parent
eb75b34394
commit
43c2e454a0
@ -62,24 +62,4 @@ fi
|
|||||||
|
|
||||||
rm -f "${BINDATA_OUTPUT}.tmp"
|
rm -f "${BINDATA_OUTPUT}.tmp"
|
||||||
|
|
||||||
# These are files for runtime code
|
|
||||||
BINDATA_OUTPUT="staging/src/k8s.io/kubectl/pkg/generated/bindata.go"
|
|
||||||
go-bindata -nometadata -nocompress -o "${BINDATA_OUTPUT}.tmp" -pkg generated \
|
|
||||||
-ignore .jpg -ignore .png -ignore .md \
|
|
||||||
"translations/..."
|
|
||||||
|
|
||||||
gofmt -s -w "${BINDATA_OUTPUT}.tmp"
|
|
||||||
|
|
||||||
# Here we compare and overwrite only if different to avoid updating the
|
|
||||||
# timestamp and triggering a rebuild. The 'cat' redirect trick to preserve file
|
|
||||||
# permissions of the target file.
|
|
||||||
if ! cmp -s "${BINDATA_OUTPUT}.tmp" "${BINDATA_OUTPUT}" ; then
|
|
||||||
cat "${BINDATA_OUTPUT}.tmp" > "${BINDATA_OUTPUT}"
|
|
||||||
V=2 kube::log::info "Generated bindata file : ${BINDATA_OUTPUT} has $(wc -l ${BINDATA_OUTPUT}) lines of lovely automated artifacts"
|
|
||||||
else
|
|
||||||
V=2 kube::log::info "No changes in generated bindata file: ${BINDATA_OUTPUT}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f "${BINDATA_OUTPUT}.tmp"
|
|
||||||
|
|
||||||
popd >/dev/null
|
popd >/dev/null
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user