Mercurial > hg
view contrib/packaging/docker/centos6 @ 42571:3be6ff55095b
crecord: fix if -> elif when handling key presses
This shouldn't actually change any behavior, I only noticed it since I started
using KEY_UP in tests, and it was complaining when it got down to the ^L
handler that initscr hadn't been called yet.
Differential Revision: https://phab.mercurial-scm.org/D6619
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Mon, 08 Jul 2019 12:38:37 -0700 |
parents | 4c0d4bbdc395 |
children |
line wrap: on
line source
FROM centos:centos6 RUN groupadd -g %GID% build && \ useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build RUN yum install -y \ gcc \ gettext \ make \ python-devel \ python-docutils \ rpm-build \ tar # For creating repo meta data RUN yum install -y createrepo # For python RUN yum install -y \ bzip2-devel \ ncurses-devel \ openssl-devel \ readline-devel \ zlib-devel