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:
parent
9ba3f7d83a
commit
880ce718e7
1 changed files with 1 additions and 1 deletions
|
|
@ -377,7 +377,7 @@ def sync(full=True, extras=False):
|
||||||
command_mkdir_remote = "mkdir -p {remote}".format(remote=remote_dir)
|
command_mkdir_remote = "mkdir -p {remote}".format(remote=remote_dir)
|
||||||
|
|
||||||
excludeitems = (".git", "*.swp", "*.swo", ".DS_Store", "*.pyc", "*.bak",
|
excludeitems = (".git", "*.swp", "*.swo", ".DS_Store", "*.pyc", "*.bak",
|
||||||
"build/*", "/extras", "/opt")
|
"/usr/etc/*/build/*", "/extras", "/opt")
|
||||||
|
|
||||||
if env.debug:
|
if env.debug:
|
||||||
print("\n%s debug: %s" % (debug_prefix, env.debug))
|
print("\n%s debug: %s" % (debug_prefix, env.debug))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue