From fc3c03016926c7c30ea468125c8c75c023afa684 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Tue, 5 Sep 2017 01:08:01 +1000 Subject: [PATCH] fix(generic): tabtab install script fails on non-*nix systems ISSUES CLOSED: #314 --- tabtab-install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabtab-install.js b/tabtab-install.js index 145d3a2339..7da9241eb7 100644 --- a/tabtab-install.js +++ b/tabtab-install.js @@ -3,5 +3,5 @@ process.argv.push('--auto'); try { require('tabtab/src/cli'); } catch (e) { - console.warning(`Failed to install tab completion: ${e}`); + console.warn(`Failed to install tab completion: ${e}`); }