Closes #302 ## Description <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] Bug fix - [x] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/[namespace]/modules/[module-name]` **New version:** `v3.0.0` **Breaking change:** [ ] Yes [ ] No ## Testing & Validation - [x] Tests pass (`bun test`) - [x] Code formatted (`bun run fmt`) - [x] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable --> --------- Co-authored-by: DevCats <christofer@coder.com> Co-authored-by: Atif Ali <me@matifali.dev>
14 lines
162 B
Bash
14 lines
162 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$1" == "--version" ]]; then
|
|
echo "claude version v1.0.0"
|
|
exit 0
|
|
fi
|
|
|
|
set -e
|
|
|
|
while true; do
|
|
echo "$(date) - claude-mock"
|
|
sleep 15
|
|
done
|