| 1234567891011121314151617181920212223242526 |
- $ErrorActionPreference = "Stop"
- # Get the root directory and third_party directory
- $ROOT_DIR = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent | Split-Path -Parent | Split-Path -Parent -Resolve
- # Include the common functions
- . "$ROOT_DIR/hack/lib/windows/init.ps1"
- function Generate {
- uv run gen
- if ($LASTEXITCODE -ne 0) {
- GPUStack.Log.Fatal "failed to run uv run gen."
- }
- }
- #
- # main
- #
- GPUStack.Log.Info "+++ GENERATE +++"
- try {
- Generate
- } catch {
- GPUStack.Log.Fatal "failed to generate: $($_.Exception.Message)"
- }
- GPUStack.Log.Info "--- GENERATE ---"
|