Codebase list google-nexus-tools / run/b7f6ffe8-cbfe-44c0-a2f8-24d503b09e4d/main compile.ps1
run/b7f6ffe8-cbfe-44c0-a2f8-24d503b09e4d/main

Tree @run/b7f6ffe8-cbfe-44c0-a2f8-24d503b09e4d/main (Download .tar.gz)

compile.ps1 @run/b7f6ffe8-cbfe-44c0-a2f8-24d503b09e4d/mainraw · history · blame

$FileName = "nexustools-windows-x64"

# Make the new directory
$dirCheck = Test-Path dist
if ($dirCheck) {
    # Do nothing
} else {
    New-Item -Name "dist" -ItemType Directory
}

dart compile exe "./bin/main.dart" -o "./dist/nexustools.exe"
Compress-Archive -Path "./dist/nexustools.exe" -DestinationPath "./dist/$FileName.zip" -Force
del "./dist/nexustools.exe"