mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 10:31:59 -04:00
In deploy-ebook-to-www, only check for tsp if it's installed
This commit is contained in:
parent
ac7a9f3725
commit
b74d7361a1
1 changed files with 4 additions and 2 deletions
|
@ -431,8 +431,10 @@ do
|
||||||
done
|
done
|
||||||
|
|
||||||
queuedTasks="false"
|
queuedTasks="false"
|
||||||
if tsp | grep --quiet --extended-regexp "^[0-9]+\s+queued"; then
|
if which tsp > /dev/null; then
|
||||||
queuedTasks="true"
|
if tsp | grep --quiet --extended-regexp "^[0-9]+\s+queued"; then
|
||||||
|
queuedTasks="true"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${feeds}" = "true" ]; then
|
if [ "${feeds}" = "true" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue