Commit 2c970896 authored by Eric Paris's avatar Eric Paris

Fix doc generation on Macs

The find util on macs require a path. Linux does not. So give it the path to work on both.
parent 19421c52
......@@ -175,7 +175,7 @@ kube::util::gen-docs() {
# create the list of generated files
pushd "${dest}" > /dev/null
touch .generated_docs
find -type f | cut -sd / -f 2- | LC_ALL=C sort > .generated_docs
find . -type f | cut -sd / -f 2- | LC_ALL=C sort > .generated_docs
popd > /dev/null
while read file; do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment