Commit 10f35a05 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

chore: Bump version in install scripts

parent f2e6570f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# PowerShell script to install ACORN CLI for Windows
$ACORN_VERSION = "0.1.42"
$ACORN_VERSION = "0.1.43"
$URL = "https://code.ornl.gov/api/v4/projects/16689/packages/generic/x86_64-pc-windows-msvc/v$ACORN_VERSION/acorn.exe"

Write-Host "Downloading ACORN CLI version $ACORN_VERSION for Windows into ./bin ..."
+1 −1
Original line number Diff line number Diff line
#! /bin/sh

main() {
    local ACORN_VERSION=0.1.42
    local ACORN_VERSION=0.1.43
    mkdir -p bin
    curl -L https://code.ornl.gov/api/v4/projects/16689/packages/generic/x86_64-unknown-linux-musl/v${ACORN_VERSION}/acorn -o bin/acorn
    chmod +x ./bin/acorn