Codebase list google-nexus-tools / 0ab4f6b1-7b5f-4f0b-b9a1-d4561f423834/upstream/5.4+git20220915.1.8859200 compile.ps1
0ab4f6b1-7b5f-4f0b-b9a1-d4561f423834/upstream/5.4+git20220915.1.8859200

Tree @0ab4f6b1-7b5f-4f0b-b9a1-d4561f423834/upstream/5.4+git20220915.1.8859200 (Download .tar.gz)

compile.ps1 @0ab4f6b1-7b5f-4f0b-b9a1-d4561f423834/upstream/5.4+git20220915.1.8859200raw · 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"