From f42bd7e220f02293d668bf68007a87e04e84aee9 Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:47:24 -0500 Subject: [PATCH] [setup](build): chg shell from sh to bash Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- action/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action/entrypoint.sh b/action/entrypoint.sh index 5975f465..13694c26 100644 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -1,3 +1,3 @@ -#!/bin/sh +#!/bin/bash -sh -c "cd /home/app/pandoc && make pdf" +bash -c "cd /home/app/pandoc && make pdf"