-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathinstall.ps1
More file actions
116 lines (97 loc) · 3.57 KB
/
install.ps1
File metadata and controls
116 lines (97 loc) · 3.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# GudaCC Commands Installer for Windows
# https://github.com/GuDaStudio/commands
param(
[Alias("u")][switch]$User,
[Alias("p")][switch]$Project,
[Alias("t")][string]$Target,
[Alias("h")][switch]$Help
)
$ErrorActionPreference = "Stop"
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$CommandName = "gudaspec"
function Write-ColorOutput {
param(
[string]$Text,
[string]$Color = "White",
[switch]$NoNewline
)
if ($NoNewline) {
Write-Host $Text -ForegroundColor $Color -NoNewline
} else {
Write-Host $Text -ForegroundColor $Color
}
}
function Show-Usage {
Write-ColorOutput "GudaCC Commands Installer" "Blue"
Write-Host ""
Write-Host "Usage: .\install.ps1 [OPTIONS]"
Write-Host ""
Write-Host "Options:"
Write-Host " -User, -u Install to user-level (~\.claude\commands\)"
Write-Host " -Project, -p Install to project-level (.\.claude\commands\)"
Write-Host " -Target, -t <path> Install to custom target path"
Write-Host " -Help, -h Show this help message"
Write-Host ""
Write-Host "Examples:"
Write-Host " .\install.ps1 -User"
Write-Host " .\install.ps1 -Project"
Write-Host " .\install.ps1 -Target C:\custom\path"
}
function Install-Command {
param([string]$TargetDir)
$sourceDir = Join-Path $ScriptDir $CommandName
$destDir = Join-Path $TargetDir $CommandName
if (-not (Test-Path $sourceDir -PathType Container)) {
Write-ColorOutput "Error: '$CommandName' not found in source directory" "Red"
return $false
}
Write-Host "Installing " -NoNewline
Write-ColorOutput "$CommandName" "Cyan" -NoNewline
Write-Host " -> $destDir"
if (-not (Test-Path $TargetDir)) {
New-Item -ItemType Directory -Path $TargetDir -Force | Out-Null
}
if (Test-Path $destDir) {
Write-ColorOutput " Removing existing installation..." "Yellow"
Remove-Item -Path $destDir -Recurse -Force
}
Copy-Item -Path $sourceDir -Destination $destDir -Recurse
$gitFile = Join-Path $destDir ".git"
if (Test-Path $gitFile -PathType Leaf) {
Remove-Item -Path $gitFile -Force
}
Write-ColorOutput " ✓ Installed" "Green"
return $true
}
if ($Help) {
Show-Usage
exit 0
}
$TargetPath = ""
if ($User) {
$TargetPath = Join-Path $env:USERPROFILE ".claude\commands"
} elseif ($Project) {
$TargetPath = ".\.claude\commands"
} elseif ($Target) {
$TargetPath = $Target
}
if (-not $TargetPath) {
Write-ColorOutput "Error: Please specify installation target (-User, -Project, or -Target)" "Red"
Write-Host ""
Show-Usage
exit 1
}
Write-ColorOutput "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" "Blue"
Write-ColorOutput "GudaCC Commands Installer" "Blue"
Write-ColorOutput "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" "Blue"
Write-Host ""
Write-Host "Target: " -NoNewline
Write-ColorOutput $TargetPath "Green"
Write-Host "Command: " -NoNewline
Write-ColorOutput $CommandName "Green"
Write-Host ""
Install-Command -TargetDir $TargetPath
Write-Host ""
Write-ColorOutput "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" "Green"
Write-ColorOutput "Installation complete!" "Green"
Write-ColorOutput "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" "Green"