From eab7526e789f1d09ea262e4aff54fb403259b56b Mon Sep 17 00:00:00 2001 From: tshion Date: Mon, 29 Apr 2024 18:17:36 +0900 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E6=96=87=E5=AD=97=E3=81=B8=E3=81=AE?= =?UTF-8?q?=E5=A4=89=E6=8F=9B=E3=83=AD=E3=82=B8=E3=83=83=E3=82=AF=E3=82=92?= =?UTF-8?q?=20tr=20=E3=83=99=E3=83=BC=E3=82=B9=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 3da2a50..66149f8 100644 --- a/action.yml +++ b/action.yml @@ -32,7 +32,7 @@ runs: email='' name='' - user=${USER,,} + user=$(echo $USER | tr [A-Z] [a-z]) if [ $user = 'actions-user' ]; then email='65916846+actions-user@users.noreply.github.com' name='actions-user' @@ -50,7 +50,7 @@ runs: echo "email: $email" flag='--local' - if [ ${GLOBAL,,} = 'true' ]; then + if [ $(echo $GLOBAL | tr [A-Z] [a-z]) = 'true' ]; then flag='--global' fi echo "flag: $flag"