Dummy change to README (excluded from CI) and to build.ps1 (not
excluded from CI) to make sure this triggers a CI run.
This commit is contained in:
Andrea Spadaccini 2019-07-31 10:14:26 +01:00
Родитель 089b72a3f4
Коммит 0f60efef2c
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -114,7 +114,7 @@ An example lifecycle of a feature flag might be the following:
2. The feature is enabled for a particular customer;
3. The feature is enabled for a small set of customers;
4. The feature is gradually rolled out to increasingly large percentages of customers
(e.g., 5%, 10%, 20%, 50%)
(e.g., 5%, 10%, 30%, 50%)
5. The feature is rolled out to all customers (100%)
6. The test for the feature flag is removed from the code, and the feature flag
configuration is removed as well.

Просмотреть файл

@ -8,11 +8,11 @@ if (-not (Test-Path $baseDir/External/newtonsoft.json) -or -not (Test-Path $base
}
if (Test-Path $buildDir) {
Write-Host "Cleaning up directory $buildDir"
Write-Host "Cleaning up directory $buildDir."
Remove-Item $buildDir -Force -Recurse
}
Write-Host "Creating $buildDir and copying everything in there"
Write-Host "Creating $buildDir and copying everything in there."
$null = New-Item -Path $buildDir -ItemType Directory -Force
$null = New-Item -Path $buildDir/External -ItemType Directory -Force
@ -25,7 +25,7 @@ Copy-Item -Force $baseDir/External/njsonschema $buildDir/External -Recurse
$nupkgFiles = Get-ChildItem $buildDir -Recurse | Where-Object {$_.Extension -ieq ".nupkg"}
if ($nupkgFiles.Count -gt 0) {
Write-Host "Removing $($nupkgFiles.Count) nupkg files: $nupkgFiles"
Write-Host "Removing $($nupkgFiles.Count) nupkg files: $nupkgFiles."
$nupkgFiles | ForEach-Object {Remove-Item $_.FullName}
}