mirror of
https://github.com/junegunn/fzf
synced 2024-11-01 03:20:42 +00:00
2166b4ca17
We were not properly waiting for truthy-ness in until blocks.
Need Minitest with 21d9e804b6
12 lines
489 B
Docker
12 lines
489 B
Docker
FROM archlinux/base:latest
|
|
RUN pacman -Sy && pacman --noconfirm -S awk git tmux zsh fish ruby procps go make gcc
|
|
RUN gem install --no-document -v 5.14.2 minitest
|
|
RUN echo '. /usr/share/bash-completion/completions/git' >> ~/.bashrc
|
|
RUN echo '. ~/.bashrc' >> ~/.bash_profile
|
|
|
|
# Do not set default PS1
|
|
RUN rm -f /etc/bash.bashrc
|
|
COPY . /fzf
|
|
RUN cd /fzf && make install && ./install --all
|
|
CMD tmux new 'set -o pipefail; ruby /fzf/test/test_go.rb | tee out && touch ok' && cat out && [ -e ok ]
|