2023-10-10 14:33:11 -04:00

8 lines
97 B
Bash
Executable File

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