Skip to content

Commit eb8c347

Browse files
authored
Update openclaw_removal.sh (#19)
Missing semicolon results in an error when running the `--help` flag. Thanks @drewdiver!
1 parent cdba251 commit eb8c347

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sales/openclaw_removal/openclaw_removal.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ while [[ $# -gt 0 ]]; do
7676
--keep-workspace) KEEP_WORKSPACE=true; shift ;;
7777
--docker-only) DOCKER_ONLY=true; shift ;;
7878
--help)
79-
sed -n '/^# Usage:/,/^#####/{ /^####/d; s/^# \?//; p }' "$0"
79+
sed -n '/^# Usage:/,/^#####/{ /^####/d; s/^# \?//; p; }' "$0"
8080
exit 0
8181
;;
8282
*)
@@ -614,4 +614,4 @@ else
614614
fi
615615

616616
echo "OpenClaw removal complete."
617-
exit 0
617+
exit 0

0 commit comments

Comments
 (0)