mirror of
https://github.com/chubin/cheat.sh.git
synced 2024-11-26 11:09:22 +03:00
Fetch cheat sheets without installing cht.sh.txt
This commit is contained in:
parent
981aa35c36
commit
20e371c575
@ -9,7 +9,9 @@ RUN apk add --update --no-cache python2 py2-pip py2-gevent \
|
|||||||
&& pip install -r requirements.txt \
|
&& pip install -r requirements.txt \
|
||||||
&& apk del build-deps
|
&& apk del build-deps
|
||||||
COPY . /app
|
COPY . /app
|
||||||
RUN apk add --update --no-cache curl git py2-virtualenv \
|
# fetching cheat sheets
|
||||||
&& ./share/cht.sh.txt --standalone-install
|
RUN apk add --update --no-cache git \
|
||||||
|
&& mkdir -p /root/.cheat.sh/log/ \
|
||||||
|
&& python2 lib/fetch.py fetch-all
|
||||||
ENTRYPOINT ["python2"]
|
ENTRYPOINT ["python2"]
|
||||||
CMD ["bin/srv.py"]
|
CMD ["bin/srv.py"]
|
||||||
|
@ -56,7 +56,11 @@ def fetch_all(skip_existing=True):
|
|||||||
|
|
||||||
sys.stdout.write("Fetching %s..." % (adptr))
|
sys.stdout.write("Fetching %s..." % (adptr))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
try:
|
||||||
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||||
|
except OSError:
|
||||||
|
print("\nERROR: %s" % cmd)
|
||||||
|
raise
|
||||||
output = process.communicate()[0]
|
output = process.communicate()[0]
|
||||||
if process.returncode != 0:
|
if process.returncode != 0:
|
||||||
sys.stdout.write("\nERROR:\n---\n" + output)
|
sys.stdout.write("\nERROR:\n---\n" + output)
|
||||||
|
Loading…
Reference in New Issue
Block a user