mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Add note about uninstallation (#3845)
* Add note about uninstallation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
22608cb44e
commit
5b70ce6be2
1 changed files with 8 additions and 1 deletions
9
INSTALL
9
INSTALL
|
@ -34,7 +34,7 @@ Briefly, these shell commands will unpack, build and install Taskwarrior:
|
||||||
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release . [3]
|
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release . [3]
|
||||||
$ cmake --build build [4]
|
$ cmake --build build [4]
|
||||||
$ sudo cmake --install build [5]
|
$ sudo cmake --install build [5]
|
||||||
$ cd .. ; rm -r task-X.Y.Z [6]
|
$ cd .. ; rm -r task-X.Y.Z [6] (see: Uninstallation)
|
||||||
|
|
||||||
These commands are explained below:
|
These commands are explained below:
|
||||||
|
|
||||||
|
@ -103,6 +103,13 @@ There is no uninstall option in CMake makefiles. This is a manual process.
|
||||||
To uninstall Taskwarrior, remove the files listed in the install_manifest.txt
|
To uninstall Taskwarrior, remove the files listed in the install_manifest.txt
|
||||||
file that was generated when you built Taskwarrior.
|
file that was generated when you built Taskwarrior.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd task-X.Y.Z
|
||||||
|
sudo xargs rm < build/install_manifest.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
If you want to uninstall this way, you will need to omit step [6] above and
|
||||||
|
retain the source folder after installation.
|
||||||
|
|
||||||
Taskwarrior Build Notes
|
Taskwarrior Build Notes
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue