From 7098e0b77cfe5d47cdf36e41f1c5a4f72aa3b000 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 14 Nov 2022 23:05:17 +0200 Subject: Fix scripts ROOT_PATH --- scripts/ghpr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/ghpr.py') diff --git a/scripts/ghpr.py b/scripts/ghpr.py index 4e9a124..4406ba1 100644 --- a/scripts/ghpr.py +++ b/scripts/ghpr.py @@ -3,7 +3,7 @@ import sys from pathlib import Path from subprocess import run -ROOT_PATH = Path(__file__).parent +ROOT_PATH = Path(__file__).parents[1] path = sys.argv[1] -- cgit v1.3.1