11 lines
114 B
Plaintext
11 lines
114 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
APP="$1"
|
||
|
|
||
|
if test -f "$APP/config.sh" && test -f "$APP/install.sh"
|
||
|
then echo "UML"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
exit 1
|