Skip to content

Commit

Permalink
Remove -n flags from echo lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rade333 committed Aug 14, 2024
1 parent 4fe3dad commit a01230a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ciReleaseCleanfailed.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ var ciReleaseCleanfailedCmd = &cobra.Command{
kubectl delete pvc -n "${NAMESPACE}" -l release="${RELEASE_NAME}"
kubectl delete pvc -n "${NAMESPACE}" -l app="${RELEASE_NAME}-es"
echo -n "Waiting for volumes to be deleted."
echo "Waiting for volumes to be deleted."
until [[ -z $(kubectl get pv | grep "${NAMESPACE}/${RELEASE_NAME}-") ]]
do
echo -n "."
echo "."
sleep 5
done
fi
Expand Down

0 comments on commit a01230a

Please sign in to comment.