8 lines
97 B
Bash
Raw Permalink Normal View History

#!/bin/sh
if [ ${ENV} = "DEV" ]; then
pdm sync --dev
else
pdm sync --prod --no-editable
fi