added automatic retrial of failed commands

This commit is contained in:
2016-06-05 20:51:13 +02:00
parent 2ae6fad2a1
commit 1e9c2c850c
3 changed files with 45 additions and 25 deletions

View File

@@ -1,3 +1,3 @@
import "typings-global";
export declare let bash: (commandArg: any) => void;
export declare let bashBare: (commandArg: any) => void;
export declare let bash: (commandArg: string, retryArg?: number) => void;
export declare let bashBare: (commandArg: any, retryArg?: number) => void;