Browse Source

Make activate optional in script/changelog

pull/1277/head
Ross McFarland 5 months ago
parent
commit
90f97dafdc
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      script/changelog

+ 2
- 4
script/changelog View File

@ -9,10 +9,8 @@ if [ -z "$VENV_NAME" ]; then
fi
ACTIVATE="$VENV_NAME/bin/activate"
if [ ! -f "$ACTIVATE" ]; then
echo "$ACTIVATE does not exist, run ./script/bootstrap" >&2
exit 1
if [ -f "$ACTIVATE" ]; then
. "$ACTIVATE"
fi
. "$ACTIVATE"
changelet "$@"

Loading…
Cancel
Save