From 8f71e10a73ca3268d9ab3cb038ade0c4b26aad8a Mon Sep 17 00:00:00 2001 From: k5md Date: Thu, 14 Jan 2021 03:52:14 -0500 Subject: [PATCH] fix for https://github.com/k5md/M2KB/issues/1 --- .travis.yml | 3 +-- Dockerfile | 2 +- src/M2KB.cpp | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8883c6b..25a847b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,7 @@ before_deploy: deploy: provider: releases - api_key: - secure: $GITHUB_API_KEY + api_key: $GITHUB_API_KEY file_glob: true file: artefacts/* skip_cleanup: true diff --git a/Dockerfile b/Dockerfile index ebfc73e..e083a3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu +FROM ubuntu:bionic-20190204 USER root RUN apt-get update -y && \ apt-get install -y \ diff --git a/src/M2KB.cpp b/src/M2KB.cpp index 1fb8538..dedfc92 100644 --- a/src/M2KB.cpp +++ b/src/M2KB.cpp @@ -242,7 +242,6 @@ int main() { while(true) { int c = _getch(); if (c == VK_ESCAPE) break; - if (c == 'q') break; } keymapper.~Keymapper();