Monorepo for Aesthetic.Computer aesthetic.computer
at main 20 lines 540 B view raw
1#!/usr/bin/env fish 2# Call the Windows build script from WSL2 3 4# Get the Windows path to the script 5set WINDOWS_SCRIPT_PATH (wslpath -w /workspaces/aesthetic-computer/windows/build-false-work.ps1) 6 7echo "🔨 Triggering Windows build on host machine..." 8echo "" 9 10# Run PowerShell on Windows host 11powershell.exe -ExecutionPolicy Bypass -File "$WINDOWS_SCRIPT_PATH" $argv 12 13if test $status -eq 0 14 echo "" 15 echo "✅ Build completed successfully!" 16else 17 echo "" 18 echo "❌ Build failed with exit code: $status" 19 exit $status 20end