summaryrefslogtreecommitdiff
path: root/scripts/ghpr.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-11-14 23:05:17 +0200
committerYuval Adam <_@yuv.al>2022-11-14 23:05:17 +0200
commit7098e0b77cfe5d47cdf36e41f1c5a4f72aa3b000 (patch)
treec87d226e2a2f581fe00b1728214fdd0f47df2057 /scripts/ghpr.py
parent19928dde097a131fbcc2b73f7ba1142c6e6ee7cc (diff)
Fix scripts ROOT_PATH
Diffstat (limited to 'scripts/ghpr.py')
-rw-r--r--scripts/ghpr.py2
1 files changed, 1 insertions, 1 deletions
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]