mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-20 12:40:21 +02:00
8 lines
107 B
Bash
Executable File
8 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d "$1/love" ] && [ -f "$1/love/Android.mk" ]; then
|
|
echo "yes"
|
|
else
|
|
echo "no"
|
|
fi
|