Fix Clone Plugin failing with "unknown clone option" (#6942)
omarchy-plugin-clone only takes the source id as the first argument, but the menu passed --edit ahead of it, so the id fell through to the unknown-option branch and every clone from Setup > Plugins failed. Closes #6913 Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
c0a20e2e43
commit
ff4e92e63b
@@ -38,7 +38,7 @@ id=$(cut -f2 <<<"$selection")
|
||||
|
||||
if [[ $1 == "clone" ]]; then
|
||||
omarchy-launch-floating-terminal-with-presentation \
|
||||
"omarchy-plugin-clone --edit $(printf '%q' "$id")"
|
||||
"omarchy-plugin-clone $(printf '%q' "$id") --edit"
|
||||
elif [[ $1 == "remove" ]]; then
|
||||
omarchy-launch-floating-terminal-with-presentation "omarchy-plugin-remove $(printf '%q' "$id")"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user