Commit 5ca5985e authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix: Update acorn linux install script

parent ca2c94b8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
main() {
    local ACORN_VERSION=0.1.42
    mkdir -p bin
    curl -L https://code.ornl.gov/api/v4/projects/16689/packages/generic/x86_64-unknown-linux-gnu/v${ACORN_VERSION}/acorn -o bin/acorn
    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
    ./bin/acorn --version || echo "ACORN downloaded to ./bin";
}