Fixed issue with premium unleaded where it wouldn't show the price. Issue was with the incorrect variable name.

This commit is contained in:
2024-10-06 12:56:06 +01:00
parent 95d7f63d76
commit 2dcc769a40
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ costco_unleaded=$(echo $costco_gateshead_site | grep -oP '"gas-title">Unleaded P
## Print fuel prices
echo "Premium Diesel - $costco_diesel p"
echo "Premium Unleaded - $premium_unleaded p"
echo "Premium Unleaded - $costco_premium_unleaded p"
echo "Unleaded - $costco_unleaded p"
}