commit 88f6835a1c78d11cd24e7983e86f003a1b02c73f parent 508a772e116ec1fa9ca9052b80911a821275b8c5 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Fri, 28 Feb 2025 11:19:00 +0100 fix: ensure the session file is deleted Diffstat:
M | bin/helix-term | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/helix-term b/bin/helix-term @@ -33,6 +33,6 @@ else fi # Remove session ID -if [ ! -f "./.helixterm_session" ]; then +if [ -f "./.helixterm_session" ]; then rm "./.helixterm_session" fi