Skip to content

Commit 7391082

Browse files
Update registry/coder-labs/modules/cursor-cli/README.md
Co-authored-by: DevCats <[email protected]>
1 parent be5c394 commit 7391082

File tree

1 file changed

+3
-3
lines changed
  • registry/coder-labs/modules/cursor-cli

1 file changed

+3
-3
lines changed

registry/coder-labs/modules/cursor-cli/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ module "cursor_cli" {
5959
post_install_script = <<-EOT
6060
#!/usr/bin/env bash
6161
set -euo pipefail
62-
TARGET="${FOLDER}/.git/config"
63-
echo "[cursor-cli] waiting for ${TARGET}..."
62+
TARGET="$${FOLDER}/.git/config"
63+
echo "[cursor-cli] waiting for $${TARGET}..."
6464
for i in $(seq 1 600); do
6565
[ -f "$TARGET" ] && { echo "ready"; exit 0; }
6666
sleep 1
6767
done
68-
echo "timeout waiting for ${TARGET}" >&2
68+
echo "timeout waiting for $${TARGET}" >&2
6969
EOT
7070
7171
# Provide a map of file name to content; files are written to `~/.cursor/rules/<name>`.

0 commit comments

Comments
 (0)