From 92340d129fd9a99171e2dd935a793fae2b042bd9 Mon Sep 17 00:00:00 2001 From: fftux Date: Sat, 16 Dec 2023 01:16:38 -0500 Subject: [PATCH] Fixed broken relative path Relative path redirecting to cli.py was not working when executed from the tools directory. Updated path with '..' to fixed broken reference. --- tools/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mail.py b/tools/mail.py index f7d5b410..b6169499 100755 --- a/tools/mail.py +++ b/tools/mail.py @@ -1,3 +1,3 @@ #!/bin/bash # This script has moved. -management/cli.py "$@" +../management/cli.py "$@"