cargo build --release
$old_exe = Get-Command cloud_terrastodon.exe | Select-Object -ExpandProperty Source
if (-not (Test-Path $old_exe)) {
Write-Error "Could not find cloud_terrastodon.exe in your path!"
return
}
$new_exe = "target\release\cloud_terrastodon.exe"
if (-not (Test-Path $new_exe)) {
Write-Error "Could not find target exe, run `cargo build --release` please."
return
}
Copy-Item -Path $new_exe -Destination $old_exe
Write-Host "Now in path:"
cloud_terrastodon --version