cloud_terrastodon 0.27.0

A command-line tool for interacting with cloud ecosystems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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