eye_config 0.5.2

A configuration persistence library and CLI tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
$old_exe = Get-Command eye_config.exe | Select-Object -ExpandProperty Source
if (-not (Test-Path $old_exe)) {
    Write-Error "Could not find eye_config.exe in your path!"
    return
}
$new_exe = "target\release\eye_config.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:"
eye_config --version