#!/bin/sh
# env-crypt hook start
if command -v env-crypt >/dev/null 2>&1 && [ -f ".envcrypt" ]; then
  if ! env-crypt configured 2>/dev/null; then
    exit 0
  fi
  env-crypt unlock --quiet
fi
# env-crypt hook end
