Skip to content

Commit f31b5c7

Browse files
authored
fix(validate-inputs): use env-based bash shebang for portability (#303)
1 parent 1d48d13 commit f31b5c7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ runs:
9191
INPUT_GCP_SERVICE_ACCOUNT_PRESENT: "${{ inputs.gcp_service_account != '' }}"
9292
INPUT_USE_VERTEX_AI: '${{ inputs.use_vertex_ai }}'
9393
INPUT_USE_GEMINI_CODE_ASSIST: '${{ inputs.use_gemini_code_assist }}'
94+
9495
- name: 'Configure Gemini CLI'
9596
if: |-
9697
${{ inputs.settings != '' }}

scripts/validate-inputs.sh

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

44
# Emit a clear warning in three places without failing the step:

0 commit comments

Comments
 (0)