view update.sh @ 2:0ecb388a0b90

start power code
author drewp@bigasterisk.com
date Sat, 04 Mar 2023 12:10:36 -0800
parents
children
line wrap: on
line source

#!/bin/sh

if [ `uname` = Linux ]; then
  pdm install
  pdm install -G linux
elif [ `uname` = Darwin ]; then
  ${HOME}/Library/Python/3.10/bin/pdm install
  ${HOME}/Library/Python/3.10/bin/pdm install -G osx
else
  echo `uname` unknown
  exit 1
fi