get the full path for dotnet cache output
This commit is contained in:
parent
de6a4bd022
commit
0d04b51c93
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||||
|
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Microsoft.DotNet.Cli.CommandLine;
|
using Microsoft.DotNet.Cli.CommandLine;
|
||||||
using LocalizableStrings = Microsoft.DotNet.Tools.Cache.LocalizableStrings;
|
using LocalizableStrings = Microsoft.DotNet.Tools.Cache.LocalizableStrings;
|
||||||
|
@ -54,7 +55,7 @@ namespace Microsoft.DotNet.Cli
|
||||||
LocalizableStrings.OutputOptionDescription,
|
LocalizableStrings.OutputOptionDescription,
|
||||||
Accept.ExactlyOneArgument()
|
Accept.ExactlyOneArgument()
|
||||||
.With(name: LocalizableStrings.OutputOption)
|
.With(name: LocalizableStrings.OutputOption)
|
||||||
.ForwardAsSingle(o => $"/p:ComposeDir={o.Arguments.Single()}")),
|
.ForwardAsSingle(o => $"/p:ComposeDir={Path.GetFullPath(o.Arguments.Single())}")),
|
||||||
Create.Option(
|
Create.Option(
|
||||||
"-w|--working-dir",
|
"-w|--working-dir",
|
||||||
LocalizableStrings.IntermediateWorkingDirOptionDescription,
|
LocalizableStrings.IntermediateWorkingDirOptionDescription,
|
||||||
|
|
Loading…
Add table
Reference in a new issue