Skip to content

Commit 76f1e6c

Browse files
robbycochranclaude
andcommitted
fix: shfmt formatting — use 4-space indent per .editorconfig
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c938ea8 commit 76f1e6c

3 files changed

Lines changed: 187 additions & 187 deletions

File tree

.devcontainer/entrypoint.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
mkdir -p /home/dev/.claude/debug /home/dev/.commandhistory
44

55
# Set defaults so Claude Code doesn't prompt on startup
6-
claude config set --global theme dark 2>/dev/null || true
7-
claude config set --global verbose false 2>/dev/null || true
6+
claude config set --global theme dark 2> /dev/null || true
7+
claude config set --global verbose false 2> /dev/null || true
88

99
# Register GitHub MCP server if token is available
1010
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
11-
if ! claude mcp add-json github \
12-
'{"type":"http","url":"https://api.githubcopilot.com/mcp","headers":{"Authorization":"Bearer '"$GITHUB_TOKEN"'","X-MCP-Toolsets":"context,repos,pull_requests,issues,actions,git"}}' \
13-
--scope user 2>/dev/null; then
14-
echo "WARNING: Failed to register GitHub MCP server" >&2
15-
fi
11+
if ! claude mcp add-json github \
12+
'{"type":"http","url":"https://api.githubcopilot.com/mcp","headers":{"Authorization":"Bearer '"$GITHUB_TOKEN"'","X-MCP-Toolsets":"context,repos,pull_requests,issues,actions,git"}}' \
13+
--scope user 2> /dev/null; then
14+
echo "WARNING: Failed to register GitHub MCP server" >&2
15+
fi
1616
else
17-
echo "NOTE: GITHUB_TOKEN not set — GitHub MCP tools unavailable" >&2
17+
echo "NOTE: GITHUB_TOKEN not set — GitHub MCP tools unavailable" >&2
1818
fi
1919

2020
exec "$@"

.devcontainer/init-firewall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
set -euo pipefail
88

9-
if ! command -v iptables &>/dev/null; then
9+
if ! command -v iptables &> /dev/null; then
1010
echo "iptables not available, skipping firewall setup"
1111
exit 0
1212
fi
1313

14-
if ! iptables -L &>/dev/null 2>&1; then
14+
if ! iptables -L &> /dev/null 2>&1; then
1515
echo "No NET_ADMIN capability, skipping firewall setup"
1616
exit 0
1717
fi

0 commit comments

Comments
 (0)