#!/bin/bash # omarchy:summary=Create a new Omarchy migration in the current source tree. # omarchy:args= [--no-edit] set -euo pipefail scope="${1:-}" case "$scope" in system|user) shift ;; -h|--help|"") echo "Usage: omarchy-dev-add-migration [--no-edit]" exit 0 ;; *) echo "Unknown migration scope: $scope" >&2 echo "Usage: omarchy-dev-add-migration [--no-edit]" >&2 exit 1 ;; esac cd "${OMARCHY_PATH:-$(pwd)}" mkdir -p "migrations/$scope" migration_file="migrations/$scope/$(git log -1 --format=%cd --date=unix).sh" touch "$migration_file" if [[ ${1:-} != "--no-edit" ]]; then nvim "$migration_file" fi printf '%s\n' "$PWD/$migration_file"