Codebase list google-nexus-tools / run/bb1c5def-c8da-4965-932b-cdd3a402100c/main compile.ps1
run/bb1c5def-c8da-4965-932b-cdd3a402100c/main

Tree @run/bb1c5def-c8da-4965-932b-cdd3a402100c/main (Download .tar.gz)

compile.ps1 @run/bb1c5def-c8da-4965-932b-cdd3a402100c/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"