Codebase list google-nexus-tools / run/da5d59d9-626a-427f-adf4-992a78911dee/main compile.ps1
run/da5d59d9-626a-427f-adf4-992a78911dee/main

Tree @run/da5d59d9-626a-427f-adf4-992a78911dee/main (Download .tar.gz)

compile.ps1 @run/da5d59d9-626a-427f-adf4-992a78911dee/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"