From 32abfcf3aed78eb8b32c470e0d37ff8738998bd2 Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Thu, 16 Apr 2026 05:42:49 -0700 Subject: [PATCH] fix: use /bin/sh not bash in clone-manifest (Alpine has no bash) --- scripts/clone-manifest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clone-manifest.sh b/scripts/clone-manifest.sh index 82bf4803..065378cd 100644 --- a/scripts/clone-manifest.sh +++ b/scripts/clone-manifest.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh # clone-manifest.sh — clone all repos listed in manifest.json into their # target directories. Replaces hardcoded git-clone lines in Dockerfiles. #