chore(home): mirror from kalinamall (c53704a) with papatramp URLs
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#Requires -Version 5.1
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Обёртка над Invoke-MachineBootstrap.ps1 (совместимость).
|
||||
#>
|
||||
[CmdletBinding()]
|
||||
param(
|
||||
[string]$RulesDest = '',
|
||||
[switch]$SkipClone,
|
||||
[switch]$SkipProfile,
|
||||
[switch]$WhatIf
|
||||
)
|
||||
|
||||
$root = $PSScriptRoot
|
||||
if (-not $RulesDest) {
|
||||
$RulesDest = Join-Path $HOME 'CursorRules'
|
||||
}
|
||||
|
||||
& (Join-Path $root 'scripts\Invoke-MachineBootstrap.ps1') @{
|
||||
Root = $root
|
||||
RulesDest = $RulesDest
|
||||
SkipClone = $SkipClone.IsPresent
|
||||
SkipProfile = $SkipProfile.IsPresent
|
||||
WhatIf = $WhatIf.IsPresent
|
||||
}
|
||||
|
||||
Write-Host ''
|
||||
Write-Host '[+] Bootstrap complete. In a project run: init-cursor' -ForegroundColor Green
|
||||
Reference in New Issue
Block a user