Skip to content

Commit 543f172

Browse files
authored
Fix type on argument (#315)
* Fix issue in VC versioning * Hotfix to add eventhubconnectionstring argumnet back * fix typo
1 parent df1413e commit 543f172

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.pipelines/azure-pipelines-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resources:
1616
options: --entrypoint=""
1717

1818
variables:
19-
VcVersion : 1.14.27
19+
VcVersion : 1.14.28
2020
ROOT: $(Build.SourcesDirectory)
2121
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
2222
ENABLE_PRS_DELAYSIGN: 1

.pipelines/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pool:
1818
vmImage: windows-latest
1919

2020
variables:
21-
VcVersion : 1.14.27
21+
VcVersion : 1.14.28
2222
ROOT: $(Build.SourcesDirectory)
2323
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
2424
ENABLE_PRS_DELAYSIGN: 1

increment-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ if [ "$previous_version" == "$current_version" ]; then
2727

2828
echo "$new_version" > VERSION
2929

30-
git config user.email "virtualclient@microsoft.com"
31-
git config user.name "virtualclient-ms"
30+
git config user.email "yanpan@microsoft.com"
31+
git config user.name "yangpanMS"
3232
git add -f VERSION
3333
git commit -m "Updating to $new_version"
3434
git push

src/VirtualClient/VirtualClient.Main/OptionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public static Option CreateDependenciesFlag(bool required = true, object default
269269
public static Option CreateEventHubAuthenticationContextOption(bool required = false, object defaultValue = null)
270270
{
271271
Option<EventHubAuthenticationContext> option = new Option<EventHubAuthenticationContext>(
272-
new string[] { "--event-hub", "--eventHub", "--eventhub", "--eh", "--eventbHubConnectionString" },
272+
new string[] { "--event-hub", "--eventHub", "--eventhub", "--eh", "--eventHubConnectionString" },
273273
new ParseArgument<EventHubAuthenticationContext>(result => OptionFactory.ParseEventHubAuthenticationContext(result)))
274274
{
275275
Name = "EventHubAuthenticationContext",

0 commit comments

Comments
 (0)