mirror of https://github.com/k3s-io/k3s
ignore _output directory in verify flags script
Signed-off-by: Vishnu kannan <vishnuk@google.com>pull/6/head
parent
ca657cecff
commit
7e731dac60
|
@ -55,6 +55,8 @@ def get_all_files(rootdir):
|
|||
# don't visit certain dirs
|
||||
if 'vendor' in dirs:
|
||||
dirs.remove('vendor')
|
||||
if '_output' in dirs:
|
||||
dirs.remove('_output')
|
||||
if '_gopath' in dirs:
|
||||
dirs.remove('_gopath')
|
||||
if 'third_party' in dirs:
|
||||
|
|
Loading…
Reference in New Issue