#!/bin/bash # Run the authentication check first /app/auth.sh # If authentication passes, run the application if [ $? -eq 0 ]; then make run fi