Files
omarchy/bin/omarchy-dev-add-migration
David Heinemeier Hansson a15979dc79 Improve helper
2025-07-09 10:29:49 -07:00

7 lines
193 B
Bash
Executable File

#!/bin/bash
migration_file="~/.local/share/omarchy/migrations/$(git log -1 --format=%cd --date=unix).sh"
touch $migration_file
nvim $migration_file
echo -e "Run with:\nsource $migration_file"