Skip to content

Commit 4aced03

Browse files
author
Filiz Topatan
committed
Address feedback
1 parent 7c8d702 commit 4aced03

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/Blueprint/Blueprint/Az.Blueprint.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.2.1'
15+
ModuleVersion = '0.2.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'

src/Blueprint/Blueprint/ChangeLog.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
22-
## Version 0.2.1
23-
*Bug fixes and improvements
21+
* Bug fixes and improvements
2422

2523
## Version 0.2.0
2624
* Added new cmdlets:

src/Blueprint/Blueprint/Cmdlets/BlueprintDefinition/BlueprintDefinitionCmdletBase.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,10 @@ protected void ImportArtifacts(string blueprintName, string scope, string inputP
173173

174174
var artifactsPath = GetValidatedFolderPath(inputPath, artifacts);
175175

176-
if (artifactsPath == null) return; // if blueprint doesn't contain artifacts don't proceed.
176+
if (artifactsPath == null)
177+
{
178+
return; // if blueprint doesn't contain artifacts don't proceed.
179+
}
177180

178181
var artifactFiles = AzureSession.Instance.DataStore.GetFiles(artifactsPath, "*.json", SearchOption.TopDirectoryOnly);
179182

0 commit comments

Comments
 (0)