Skip to content

Commit 4caed18

Browse files
authored
fix: add comments on step Override kubefiles
1 parent 3768ad9 commit 4caed18

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci_k8_base.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,13 @@ jobs:
8787
8888
FILE=setup/.kube
8989
if [[ -d "$FILE" ]]; then
90-
echo "$FILE exists."
91-
cp -avf "$FILE/*" .kube/
90+
echo "------------------------- $FILE exists."
91+
echo "------------------------- listing .kube/*"
9292
ls .kube/*
93+
echo "------------------------- $FILE/*"
94+
ls "$FILE/*"
95+
echo "------------------------- copiando os arquivos"
96+
cp -avf "$FILE/*" .kube/
9397
fi
9498
echo "Override FINISHED"
9599

0 commit comments

Comments
 (0)