summaryrefslogtreecommitdiff
path: root/gbp/scripts/common/buildpackage.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/scripts/common/buildpackage.py')
-rw-r--r--gbp/scripts/common/buildpackage.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/gbp/scripts/common/buildpackage.py b/gbp/scripts/common/buildpackage.py
index 7aeebe0..111512f 100644
--- a/gbp/scripts/common/buildpackage.py
+++ b/gbp/scripts/common/buildpackage.py
@@ -32,7 +32,10 @@ import gbp.log
# when we want to reference the index in a treeish context we call it:
index_name = "INDEX"
# when we want to reference the working copy in treeish context we call it:
-wc_name = "WC"
+wc_names = {'WC': {'force': True, 'untracked': True},
+ 'WC.TRACKED': {'force': False, 'untracked': False},
+ 'WC.UNTRACKED': {'force': False, 'untracked': True},
+ 'WC.IGNORED': {'force': True, 'untracked': True}}
# index file name used to export working copy
wc_index = ".git/gbp_index"