Files
CityCards-Website/src/update_remaining_pages.sh
priyanshuvish 97969c079b new src added
2025-10-09 19:03:24 +05:30

31 lines
557 B
Bash

#!/bin/bash
# List of pages that need updating (excluding already updated ones)
PAGES=(
"AttractionsPage"
"AttractionDetailsPage"
"BlogsPage"
"BlogDetailsPage"
"CheckoutPage"
"SecureCheckoutPage"
"HowItWorksPage"
"FAQPage"
"PrivacyPolicyPage"
"AboutUsPage"
"ProfilePage"
"CreateMagicItineraryPage"
"ItineraryViewPage"
"OffersPage"
"CityCardsPage"
"MagicItineraryPage"
"PostCardsPage"
"DownloadAppPage"
"EsimsPage"
"HotelDiscountsPage"
)
echo "Pages to update:"
for page in "${PAGES[@]}"; do
echo " - $page"
done