fix: Fixes typo in active-workspace flag for close-windows script

This commit is contained in:
2025-10-02 16:31:26 -04:00
parent 93fe3b6864
commit 1ee8cad635

View File

@@ -1,3 +1,5 @@
#!/usr/bin/env bash
usage() {
cat <<EOF
@@ -41,7 +43,7 @@ args=()
addresses=()
while [[ $# -gt 0 ]]; do
if [[ $1 =~ ^-a ]] || [[ $1 =~ ^--acitve-workspace ]]; then
if [[ $1 =~ ^-a ]] || [[ $1 =~ ^--active-workspace ]]; then
active_workspace_flag="1"
elif [[ $1 =~ ^--all ]]; then
all_flag="1"