automated terminal push

This commit is contained in:
lenape
2025-08-03 14:13:20 +00:00
parent 282bfad383
commit ee73dc395d

View File

@@ -133,7 +133,7 @@ pipeline {
// Verify Terraform is available
sh '''
echo "✅ Checking for Terraform..."
if ! command -v terraform &> /dev/null; then
if command -v terraform > /dev/null 2>&1; then
echo "❌ Terraform not found. Please install Terraform ${TF_VERSION}"
exit 1
fi