fix npm global Tool installation

This commit is contained in:
2016-12-10 22:43:14 +01:00
parent b194bf2a0e
commit 787145816a
5 changed files with 51 additions and 13 deletions

12
dist/npmci.bash.d.ts vendored
View File

@@ -1,3 +1,13 @@
export declare let nvmAvailable: boolean;
/**
* bash() allows using bash with nvm in path
*/
export declare let bash: (commandArg: string, retryArg?: number, bareArg?: boolean) => string;
export declare let bashBare: (commandArg: any, retryArg?: number) => string;
/**
* bashBare allows usage of bash without sourcing any files like nvm
*/
export declare let bashBare: (commandArg: string, retryArg?: number) => string;
/**
* bashNoError allows executing stuff without throwing an error
*/
export declare let bashNoError: (commandArg: string) => string;