Browse Source

Ignore only .nova/config when pushing

Matthias Vogelgesang 7 years ago
parent
commit
e29f0407e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nova/memtar.py

+ 1 - 1
nova/memtar.py

@@ -14,7 +14,7 @@ def create_tar(path):
             # remove one more character to remove trailing slash
             arcname = p[p.find(path)+len(path)+1:]
 
-            if not arcname.startswith('.nova'):
+            if not arcname.startswith('.nova/config'):
                 tar.add(p, arcname=arcname)
 
     tar.close()