From c88f36dbed21f8604284a7ce5755ab74ce992f85 Mon Sep 17 00:00:00 2001 From: nvtien Date: Mon, 16 Feb 2026 14:07:59 +0900 Subject: [PATCH] Fix: RepoRoot path - install.ps1 is at repo root, not in a subdirectory --- install.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index 99187c5..53d28bc 100644 --- a/install.ps1 +++ b/install.ps1 @@ -5,11 +5,12 @@ param( ) $ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path -$RepoRoot = Split-Path -Parent $ScriptDir +$RepoRoot = $ScriptDir if ($Workspace) { $Dest = Join-Path (Get-Location) ".agent\skills" -} else { +} +else { $Dest = Join-Path $env:USERPROFILE ".gemini\antigravity\skills" }