diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2010-06-27 19:02:07 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2010-06-27 19:02:07 +0200 |
commit | 7fced0b9cc78f6293bdb953268c6a19517333eaa (patch) | |
tree | 2da8ae6e210d69e710974eaf05597cdb49303d12 /exporters/darcs/t/lib.sh | |
parent | c7dd88b999c09f1689cdc6460ffd947dea7d57bb (diff) | |
download | bzr-fastimport-7fced0b9cc78f6293bdb953268c6a19517333eaa.tar.gz |
darcs-fast-import: always invoke darcs add using --boring
Diffstat (limited to 'exporters/darcs/t/lib.sh')
-rw-r--r-- | exporters/darcs/t/lib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exporters/darcs/t/lib.sh b/exporters/darcs/t/lib.sh index 87c4db9..ee3ec3c 100644 --- a/exporters/darcs/t/lib.sh +++ b/exporters/darcs/t/lib.sh @@ -229,6 +229,10 @@ third line" | git commit -a -F - echo f > file git add file git commit -a -m "file: other -> f" + # this is a boring file for Darcs + touch foo.pyc + git add foo.pyc + git commit -a -m "boring file" cd .. } |