From 880ce718e7c164fb8c583ce17134711db6cb6ed6 Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Thu, 11 Apr 2019 17:24:50 +0300 Subject: [PATCH] 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/* --- modules/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deploy.py b/modules/deploy.py index f7f9df1..a4dbee9 100644 --- a/modules/deploy.py +++ b/modules/deploy.py @@ -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))