mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 01:43:50 +00:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
repotac=$(cd $(dirname $0)/../extras; pwd)/scrapyd.tac
|
|
|
|
if [ -f "$repotac" ]; then
|
|
tacfile="$repotac"
|
|
elif [ -f "/usr/share/scrapyd/scrapyd.tac" ]; then
|
|
tacfile="/usr/share/scrapyd/scrapyd.tac"
|
|
else
|
|
echo "Unable to find scrapy.tac file"
|
|
exit 1
|
|
fi
|
|
|
|
twistd -ny "$tacfile"
|