File size: 238 Bytes
02d730d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# Verifique o token
python /code/check_token.py $HF_TOKEN

# Verifique o status de saída
if [ $? -eq 0 ]; then
    echo "Login bem-sucedido!"
else
    echo "Falha no login."
    exit 1
fi

# Inicie o seu aplicativo
exec "$@"