comicfn2dict/bin/version.sh

12 lines
257 B
Bash
Raw Permalink Normal View History

2023-12-21 13:04:52 -08:00
#!/bin/bash
# Get version or set version in Frontend & API.
set -euo pipefail
VERSION="${1:-}"
if [ "$VERSION" = "" ]; then
poetry version | awk '{print $2};'
else
poetry version "$VERSION"
cd frontend
npm version --allow-same-version "$VERSION"
fi