mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# bin/detect <build-dir>
|
|
|
|
if [ -f $1/.bowerrc ]; then
|
|
echo "Bower" && exit 0
|
|
else
|
|
echo "no" && exit 1
|
|
fi
|