File size: 239 Bytes
b1717f1
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/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