aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dotfiles/core.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/dotfiles/core.py b/dotfiles/core.py
index 3212939..078e9b6 100644
--- a/dotfiles/core.py
+++ b/dotfiles/core.py
@@ -232,6 +232,9 @@ class Dotfiles(object):
else:
home = self.homedir
target = self._fqpn(file)
+ if action == 'add' and os.path.split(target)[1] in self.packages:
+ print("Skipping \"%s\", packages not yet supported" % file)
+ return
if sub_dir.startswith('.') or file_name.startswith('.'):
dotfile = Dotfile(file, target, home, dry_run=self.dry_run)
getattr(dotfile, action)()