Skip to content

Commit 475e048

Browse files
committed
Fix shellcheck lint errors in gemini-cli and install-extensions
- Switch gemini-cli/install.sh shebang to bash (local is a bashism) - Add shellcheck shell=bash directive to install-extensions.sh for s6 shebang Made-with: Cursor
1 parent 5fee8d5 commit 475e048

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

features/src/gemini-cli/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/usr/bin/env bash
22
set -eu
33

44
# Function to install Gemini CLI

src/vscode/install-extensions.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/with-contenv bash
2+
# shellcheck shell=bash
23
# Installs VS Code extensions once on first container boot.
34

45
[ -f /config/.extensions-installed ] && exit 0

0 commit comments

Comments
 (0)