diff options
author | Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com> | 2022-05-25 17:00:17 +0100 |
---|---|---|
committer | Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com> | 2022-06-01 18:03:25 +0100 |
commit | 970134d6166cca7d8340c8452a8ed052ae2df2b5 (patch) | |
tree | 1386bd44ff9512f1f5b3b47b61f610d416e586f0 | |
parent | 2e4af1763e95de0a2be556a153c55890d4b9efcd (diff) | |
download | libvirt-ci-970134d6166cca7d8340c8452a8ed052ae2df2b5.zip libvirt-ci-970134d6166cca7d8340c8452a8ed052ae2df2b5.tar.gz libvirt-ci-970134d6166cca7d8340c8452a8ed052ae2df2b5.tar.bz2 |
Remove lcitool shell wrapper
./lcitool is no longer needed as the functionality has
been implemented in bin/lcitool. This is possible due
to the work done in 2e4af17.
Update README to show that ./lcitool script has been removed
and replaced with bin/lcitool.
Signed-off-by: Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com>
-rw-r--r-- | guests/lcitool/README.rst | 2 | ||||
-rwxr-xr-x | lcitool | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/guests/lcitool/README.rst b/guests/lcitool/README.rst index 72efddb..183b2a3 100644 --- a/guests/lcitool/README.rst +++ b/guests/lcitool/README.rst @@ -76,7 +76,7 @@ which will create the necessary links to your working directory and so you won't need to re-install the lcitool package locally after every code change. If you don't want to install this tool into your environment and instead wish -to run it directly, just run the `lcitool` script that is located at the +to run it directly, just run the `bin/lcitool` script that is located at the root of this repository. diff --git a/lcitool b/lcitool deleted file mode 100755 index 24eb746..0000000 --- a/lcitool +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -source_path=$(cd "$(dirname -- "$0")"; pwd) - -export PYTHONPATH="$source_path/guests/lcitool:$PYTHONPATH" -"$source_path/guests/lcitool/bin/lcitool" "$@" |