Skip to content

Commit

Permalink
Fix ts file case and align author change in task.loc.json (#8928)
Browse files Browse the repository at this point in the history
* Include author change in task.loc.json

* Rename all ts files to lowercase
  • Loading branch information
michaeljqzq authored and mdmdakbar committed Nov 28, 2018
1 parent 9d274be commit 9440bc8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Tasks/AzureIoTEdgeV2/buildimage.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import * as path from "path";
import * as fs from "fs";
import * as tl from 'azure-pipelines-task-lib/task';
import { RegistryCredential, ACRRegistry, RegistryCredentialFactory } from './registryCredentialFactory';
import Constants from "./constant";
import util from "./util";
import { IExecOptions } from 'azure-pipelines-task-lib/toolrunner';
import * as stream from "stream";
import EchoStream from './echoStream';
import EchoStream from './echostream';

export async function run() {
let templateFilePath: string = tl.getPathInput("templateFilePath", true);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Tasks/AzureIoTEdgeV2/pushimage.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as path from "path";
import * as fs from "fs";
import * as tl from 'azure-pipelines-task-lib/task';
import { RegistryCredential, ACRRegistry, RegistryCredentialFactory } from './registryCredentialFactory';
import { RegistryCredential, ACRRegistry, RegistryCredentialFactory } from './registrycredentialfactory';
import Constants from "./constant";
import util from "./util";
import { IExecOptions } from 'azure-pipelines-task-lib/toolrunner';
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AzureIoTEdgeV2/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Build",
"Release"
],
"author": "Microsoft",
"author": "Microsoft Corporation",
"version": {
"Major": 2,
"Minor": 0,
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AzureIoTEdgeV2/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as tl from "azure-pipelines-task-lib/task";
import * as crypto from "crypto";
import { IExecSyncOptions } from 'azure-pipelines-task-lib/toolrunner';
import { Writable } from "stream";
import { RegistryCredential } from './registryCredentialFactory';
import { RegistryCredential } from './registrycredentialfactory';

interface Cmd {
path: string;
Expand Down

0 comments on commit 9440bc8

Please sign in to comment.