Skip to content

Commit 2843a83

Browse files
committed
fix(scripts): Update paths for tmp and packages.yml to run in root dir rather than scripts dir.
1 parent 454033e commit 2843a83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/sync_nuget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ def __init__(self):
88
self.NUGET_FEED_URL = "https://pkgs.dev.azure.com/Keyfactor/_packaging/KeyfactorPackages/nuget/v3/index.json"
99
self.GITHUB_NUGET_URL = "https://nuget.pkg.github.com/keyfactor/index.json"
1010
self.GITHUB_TOKEN = os.getenv("GH_NUGET_TOKEN", os.getenv("GITHUB_TOKEN"))
11-
self.TMP_DIR = "../nupkgs"
12-
self.PACKAGES_YML = "../packages.yml"
11+
self.TMP_DIR = "nupkgs"
12+
self.PACKAGES_YML = "packages.yml"
1313
self.allowed_packages = self.load_allowed_packages()
1414
os.makedirs(self.TMP_DIR, exist_ok=True)
1515

0 commit comments

Comments
 (0)