From 7331595dc5d1281d2e570e79225c7d2d4a40e352 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Dec 2025 13:37:40 -0500 Subject: [PATCH] Clarify uninstall script location in README The README mentioned the uninstall-container.sh script but didn't specify where to find it. Added clarification that it's installed to /usr/local/bin and updated the example commands to use the full path. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b6ce1a3d..e9444ece 100644 --- a/README.md +++ b/README.md @@ -37,16 +37,16 @@ container system start ### Uninstall -Use the `uninstall-container.sh` script to remove `container` from your system. To remove your user data along with the tool, run: +Use the `uninstall-container.sh` script (installed to `/usr/local/bin`) to remove `container` from your system. To remove your user data along with the tool, run: ```bash -uninstall-container.sh -d +/usr/local/bin/uninstall-container.sh -d ``` To retain your user data so that it is available should you reinstall later, run: ```bash -uninstall-container.sh -k +/usr/local/bin/uninstall-container.sh -k ``` ## Next steps