I always forget.
Some checks failed
Build container image / Build and push image (push) Failing after 4m0s

This commit is contained in:
2025-12-01 21:32:01 +09:00
parent 389352e2d6
commit 705e83eafb

View File

@@ -19,7 +19,7 @@ cat /usr/lib/group
if [ -f /etc/passwd ]; then if [ -f /etc/passwd ]; then
out=$(grep -v "root" /etc/passwd) out=$(grep -v "root" /etc/passwd)
if [ ! -z "$out" ]; then if [[ ! -z "$out" ]]; then
echo echo
echo Appending the following passwd users to /usr/lib/passwd echo Appending the following passwd users to /usr/lib/passwd
echo "$out" echo "$out"
@@ -30,7 +30,7 @@ fi
if [ -f /etc/group ]; then if [ -f /etc/group ]; then
out=$(grep -v "root\|wheel" /etc/group) out=$(grep -v "root\|wheel" /etc/group)
if [ ! -z "$out" ]; then if [[ ! -z "$out" ]]; then
echo echo
echo Appending the following group entries to /usr/lib/group echo Appending the following group entries to /usr/lib/group
echo "$out" echo "$out"