#!/bin/bash if [ -f "./greta-auth" ]; then echo "Making greta-auth executable..." chmod +x "./greta-auth" echo "Starting greta-auth..." ./greta-auth else echo "❌ File 'greta-auth' not found in current directory." fi