docs: fix packages path in tutorial 05/39005/2
authorBenoît Ganne <bganne@cisco.com>
Wed, 7 Jun 2023 09:33:31 +0000 (11:33 +0200)
committerDave Wallace <dwallacelf@gmail.com>
Fri, 30 Jun 2023 20:45:46 +0000 (20:45 +0000)
Type: fix

Change-Id: I84bbb28490d9c66c5bf55839ab75b3aec1bf5854
Signed-off-by: Benoît Ganne <bganne@cisco.com>
docs/developer/build-run-debug/building.rst

index d01eff7..ca7fdef 100644 (file)
@@ -255,7 +255,7 @@ Once the packages are built they can be found in the build-root directory.
 
 .. code-block:: console
 
-    $ ls *.deb
+    $ ls build-root/*.deb
 
     If the packages are built correctly, then this should be the corresponding output:
 
@@ -271,12 +271,10 @@ For Ubuntu:
 
 .. code-block:: console
 
-   $ sudo bash
-   # dpkg -i *.deb
+   $ sudo dpkg -i build-root/*.deb
 
 For Centos or Redhat:
 
 .. code-block:: console
 
-   $ sudo bash
-   # rpm -ivh *.rpm
+   $ sudo rpm -ivh build-root/*.rpm