Comment 3 for bug 193893

Revision history for this message
Edwin Grubbs (edwin-grubbs) wrote :

This is probably the same error as when you branch after creating a loom but never run "bzr record" on the original loomified branch. Here is a simple script which tests the problem.

---------------------
#!/bin/bash

mkdir foo
cd foo
bzr init
touch bar
bzr add bar
bzr commit -m 'added bar'

bzr nick trunk
bzr loomify
echo "%%% The loom exists, sorta %%%"
bzr show-loom
# don't bzr record

cd ..
bzr branch foo foo2
cd foo2
echo "%%% The branched loom doesn't exist %%%"
bzr show-loom
bzr nick trunk2
echo "%%% The branch is in loom format but without a loom %%%"
bzr loomify