From d49906a0615aac23ea55566665cc924e2ef49fe0 Mon Sep 17 00:00:00 2001 From: dschlueter Date: Sun, 28 Jun 2026 02:45:41 +0200 Subject: [PATCH] docs: finalize launcher profiles and shell installation --- bin/install-claude-profiles | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/install-claude-profiles b/bin/install-claude-profiles index 49322d9..3c519de 100755 --- a/bin/install-claude-profiles +++ b/bin/install-claude-profiles @@ -16,7 +16,9 @@ if [[ "$REPO_DIR" != "$TARGET_REPO" ]]; then fi fi -if ! grep -Fq "$ALIAS_LINE" "$BASHRC" 2>/dev/null; then +touch "$BASHRC" + +if ! grep -Fq "$ALIAS_LINE" "$BASHRC"; then printf '\n# claude-launcher-profiles\n%s\n' "$ALIAS_LINE" >> "$BASHRC" fi