osic-stacks/scripts/volare_set_latest

6 lines
177 B
Plaintext
Raw Normal View History

#!/bin/bash
2023-09-29 03:08:33 +00:00
if [[ -z "$1"]]; then PDK=$1 fi
if [[ -z "${PDK}" ]]; then
PDK_VERSION=$(volare ls-remote --pdk $PDK | sed -n '1 p')
volare enable --pdk $PDK $PDK_VERSION
fi