loaih/checkbuilt.sh

13 lines
196 B
Bash
Raw Normal View History

2022-03-19 00:21:56 +00:00
#!/bin/bash
storage=$1
version=$2
shift 2
count=$(find "${storage}" -iname "*${version}*.AppImage" | wc -l)
if [[ ${count} -eq 0 ]]; then
echo "status: built"
else
echo "status: not built"