-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.ps1
More file actions
25 lines (20 loc) · 924 Bytes
/
Copy pathBUILD.ps1
File metadata and controls
25 lines (20 loc) · 924 Bytes
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
# Dead Link Checker - Build Launcher
# Run this from the project root directory
Write-Host "========================================" -ForegroundColor Cyan
Write-Host "Dead Link Checker - Build Launcher" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
Write-Host ""
# Navigate to build_tools directory
$buildToolsDir = Join-Path $PSScriptRoot "build_tools"
if (Test-Path $buildToolsDir) {
Write-Host "Navigating to build_tools directory..." -ForegroundColor Yellow
Set-Location $buildToolsDir
Write-Host "Running build script..." -ForegroundColor Yellow
Write-Host ""
# Run the build script
& ".\build_installer.ps1"
} else {
Write-Host "[ERROR] build_tools directory not found!" -ForegroundColor Red
Write-Host "Please run this script from the project root directory." -ForegroundColor Red
Read-Host "Press Enter to exit"
}