From 8d5ff54fede302ff22935980cbb2c1938d5b939a Mon Sep 17 00:00:00 2001 From: nicktime Date: Sun, 22 Apr 2018 09:47:57 +0400 Subject: [PATCH] Fix bzr fastimport plugin install guide Bzr would not find plugin in the old place on Ubuntu 16.04. --- book/09-git-and-other-scms/sections/import-bzr.asc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/09-git-and-other-scms/sections/import-bzr.asc b/book/09-git-and-other-scms/sections/import-bzr.asc index 58fa000fc..1d9cf677b 100644 --- a/book/09-git-and-other-scms/sections/import-bzr.asc +++ b/book/09-git-and-other-scms/sections/import-bzr.asc @@ -34,8 +34,8 @@ If the package is not available, you may install it as a plugin: [source,console] ---- -$ mkdir --parents ~/.bazaar/plugins/bzr # creates the necessary folders for the plugins -$ cd ~/.bazaar/plugins/bzr +$ mkdir --parents ~/.bazaar/plugins # creates the necessary folders for the plugins +$ cd ~/.bazaar/plugins $ bzr branch lp:bzr-fastimport fastimport # imports the fastimport plugin $ cd fastimport $ sudo python setup.py install --record=files.txt # installs the plugin