Skip to content

Commit

Permalink
Update setup.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
tejasholla committed Jun 25, 2024
1 parent 115ab50 commit 3d61023
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,17 @@ catch {
Write-Error "Failed to install CompletionPredictor. Error: $_"
}

# teracopy install
try {
# Assuming the script is accessible via the URL
$scriptPath = "https://raw.githubusercontent.com/tejasholla/powershell-profile/main/Scripts/teracopy.ps1"
$scriptContent = Invoke-RestMethod -Uri $scriptPath
Invoke-Expression $scriptContent
}
catch {
Write-Error "Failed to install teracopy. Error: $_"
}

# wsl install
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
Expand Down

0 comments on commit 3d61023

Please sign in to comment.