From 51bda2671d2ea9a6580888eebc3d9411e1f284de Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Tue, 3 Nov 2020 18:47:36 +0100 Subject: [PATCH] HACKING.md: fix client plugin install instructions Make the destination of the link be an absolute path, but more importantly fix the actual path the plugin gets installed in. --- HACKING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HACKING.md b/HACKING.md index 84063d6..40d023f 100644 --- a/HACKING.md +++ b/HACKING.md @@ -105,9 +105,9 @@ first via meson, or via a symlink from the checkout to the koji cli plugin directory: ```sh -mkdir -p /usr/lib/python3.8/site-packages/koji/koji_cli_plugins/ -ln -s plugins/cli/osbuild.py \ - /usr/lib/python3.8/site-packages/koji/koji_cli_plugins/osbuild.py +mkdir -p /usr/lib/python3.8/site-packages/koji_cli_plugins/ +ln -s $(pwd)/plugins/cli/osbuild.py \ + /usr/lib/python3.8/site-packages/koji_cli_plugins/osbuild.py ``` ### Making a build