deploy-ng: Fix for 14fa7c

This commit is contained in:
Mitchell Stokes 2017-07-26 21:06:48 -07:00
parent 14fa7c18cc
commit 894fe56d57
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ class build_apps(distutils.core.Command):
def dir_has_files(directory):
files = [
i for i in os.listdir(directory)
if check_pattern(os.path.join(directory, i))
if not check_pattern(os.path.join(directory, i))
]
return bool(files)