fix: naming of main branch write host

This commit is contained in:
Bjarke Sporring
2026-01-15 13:16:34 +01:00
parent bf07cb1868
commit ced65740a3

View File

@@ -129,8 +129,8 @@ Set-Content -Path "app.py" -Value $appContent
git add . git add .
git commit -m "Add app.py entry point" | Out-Null git commit -m "Add app.py entry point" | Out-Null
# Merge feature-login into main # Merge feature-login into $mainBranch
Write-Host "Merging feature-login into main..." -ForegroundColor Green Write-Host "Merging feature-login into $mainBranch..." -ForegroundColor Green
git merge feature-login --no-edit | Out-Null git merge feature-login --no-edit | Out-Null
# ============================================================================ # ============================================================================
@@ -197,8 +197,8 @@ Set-Content -Path "README.md" -Value $readmeContent
git add . git add .
git commit -m "Update README with setup instructions" | Out-Null git commit -m "Update README with setup instructions" | Out-Null
# Merge feature-api into main # Merge feature-api into $mainBranch
Write-Host "Merging feature-api into main..." -ForegroundColor Green Write-Host "Merging feature-api into $mainBranch..." -ForegroundColor Green
git merge feature-api --no-edit | Out-Null git merge feature-api --no-edit | Out-Null
# ============================================================================ # ============================================================================
@@ -270,7 +270,7 @@ git add .
git commit -m "Add configuration file" | Out-Null git commit -m "Add configuration file" | Out-Null
# Merge feature-database (will be three-way merge since main diverged) # Merge feature-database (will be three-way merge since main diverged)
Write-Host "Merging feature-database into main..." -ForegroundColor Green Write-Host "Merging feature-database into $mainBranch..." -ForegroundColor Green
git merge feature-database --no-edit | Out-Null git merge feature-database --no-edit | Out-Null
# Final update on main # Final update on main