mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
42 lines
851 B
Bash
Executable File
42 lines
851 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Create a new Omarchy migration in the current source tree.
|
|
# omarchy:args=[--no-edit]
|
|
|
|
set -euo pipefail
|
|
|
|
no_edit=0
|
|
|
|
while (($#)); do
|
|
case "$1" in
|
|
--no-edit)
|
|
no_edit=1
|
|
shift
|
|
;;
|
|
system|user)
|
|
echo "omarchy-dev-add-migration: migration scopes are no longer used; creating a regular migration." >&2
|
|
shift
|
|
;;
|
|
-h|--help)
|
|
echo "Usage: omarchy-dev-add-migration [--no-edit]"
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Unknown option: $1" >&2
|
|
echo "Usage: omarchy-dev-add-migration [--no-edit]" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
cd "${OMARCHY_PATH:-$(pwd)}"
|
|
mkdir -p migrations
|
|
migration_file="migrations/$(git log -1 --format=%cd --date=unix).sh"
|
|
touch "$migration_file"
|
|
|
|
if (( ! no_edit )); then
|
|
nvim "$migration_file"
|
|
fi
|
|
|
|
printf '%s\n' "$PWD/$migration_file"
|