there was a bug where any build/* dir was being ignored, even build/* in the static apps, so I set it to /usr/etc/*/build/*

This commit is contained in:
Ronny Abraham 2019-04-11 17:24:50 +03:00
parent 9ba3f7d83a
commit 880ce718e7

View file

@ -377,7 +377,7 @@ def sync(full=True, extras=False):
command_mkdir_remote = "mkdir -p {remote}".format(remote=remote_dir)
excludeitems = (".git", "*.swp", "*.swo", ".DS_Store", "*.pyc", "*.bak",
"build/*", "/extras", "/opt")
"/usr/etc/*/build/*", "/extras", "/opt")
if env.debug:
print("\n%s debug: %s" % (debug_prefix, env.debug))