From 3bc73375c4c3a5ebe71341f0e3ca82848c213c03 Mon Sep 17 00:00:00 2001 From: wrenge Date: Thu, 12 Sep 2024 10:32:32 +0300 Subject: [PATCH] Packages path fix --- upm.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upm.inc.php b/upm.inc.php index c42fa1e..ebff8b5 100644 --- a/upm.inc.php +++ b/upm.inc.php @@ -49,7 +49,7 @@ task('upm_vendor_push', function($args) { $relpath = $args[0]; $commit_msg = $args[1]; - $repo = realpath("$GAME_ROOT/unity/packages/$relpath"); + $repo = realpath("$GAME_ROOT/unity/Packages/$relpath"); if(!$repo) throw new Exception("Failed to find a valid directory for '$relpath'\n");