We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be5c394 commit 7391082Copy full SHA for 7391082
registry/coder-labs/modules/cursor-cli/README.md
@@ -59,13 +59,13 @@ module "cursor_cli" {
59
post_install_script = <<-EOT
60
#!/usr/bin/env bash
61
set -euo pipefail
62
- TARGET="${FOLDER}/.git/config"
63
- echo "[cursor-cli] waiting for ${TARGET}..."
+ TARGET="$${FOLDER}/.git/config"
+ echo "[cursor-cli] waiting for $${TARGET}..."
64
for i in $(seq 1 600); do
65
[ -f "$TARGET" ] && { echo "ready"; exit 0; }
66
sleep 1
67
done
68
- echo "timeout waiting for ${TARGET}" >&2
+ echo "timeout waiting for $${TARGET}" >&2
69
EOT
70
71
# Provide a map of file name to content; files are written to `~/.cursor/rules/<name>`.
0 commit comments