private isCombinedWithPush()

in src/cloudShell.ts [221:232]


    private isCombinedWithPush(command: string): boolean {
        switch (command) {
            case TerraformCommand.Init:
            case TerraformCommand.Plan:
            case TerraformCommand.Apply:
            case TerraformCommand.Validate:
                return true;

            default:
                return false;
        }
    }