Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .specify/scripts/powershell/check-prerequisites.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pwsh
#!/usr/bin/env pwsh

# Consolidated prerequisite checking script (PowerShell)
#
Expand Down
2 changes: 1 addition & 1 deletion .specify/scripts/powershell/common.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pwsh
#!/usr/bin/env pwsh
# Common PowerShell functions analogous to common.sh

function Get-RepoRoot {
Expand Down
2 changes: 1 addition & 1 deletion .specify/scripts/powershell/create-new-feature.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pwsh
#!/usr/bin/env pwsh
# Create a new feature
[CmdletBinding()]
param(
Expand Down
2 changes: 1 addition & 1 deletion .specify/scripts/powershell/setup-plan.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pwsh
#!/usr/bin/env pwsh
# Setup implementation plan for a feature

[CmdletBinding()]
Expand Down
2 changes: 1 addition & 1 deletion .specify/scripts/powershell/update-agent-context.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pwsh
#!/usr/bin/env pwsh
<#!
.SYNOPSIS
Update agent context files with information from plan.md (PowerShell version)
Expand Down
2 changes: 1 addition & 1 deletion tests/srcTestRepo/src/variables/public/Planets.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$script:Planets = @(
$script:Planets = @(
@{
Name = 'Mercury'
Mass = 0.330
Expand Down
2 changes: 1 addition & 1 deletion tests/srcTestRepo/tests/AfterAll.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Write-Warning "=== AFTERALL TEARDOWN SCRIPT EXECUTING ==="
Write-Warning "=== AFTERALL TEARDOWN SCRIPT EXECUTING ==="
Write-Warning "Tearing down test environment..."

# Example teardown tasks:
Expand Down
2 changes: 1 addition & 1 deletion tests/srcTestRepo/tests/BeforeAll.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Write-Warning "=== BEFOREALL SETUP SCRIPT EXECUTING ==="
Write-Warning "=== BEFOREALL SETUP SCRIPT EXECUTING ==="
Write-Warning "Setting up test environment..."

# Example setup tasks:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$script:Planets = @(
$script:Planets = @(
@{
Name = 'Mercury'
Mass = 0.330
Expand Down
2 changes: 1 addition & 1 deletion tests/srcWithManifestTestRepo/tests/AfterAll.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Write-Warning "=== AFTERALL TEARDOWN SCRIPT (Environments) EXECUTING ==="
Write-Warning "=== AFTERALL TEARDOWN SCRIPT (Environments) EXECUTING ==="
Write-Warning "Tearing down test environment for Environments..."

# Example teardown tasks for Environments directory:
Expand Down
2 changes: 1 addition & 1 deletion tests/srcWithManifestTestRepo/tests/BeforeAll.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Write-Warning "=== BEFOREALL SETUP SCRIPT EXECUTING ==="
Write-Warning "=== BEFOREALL SETUP SCRIPT EXECUTING ==="
Write-Warning "Setting up test environment..."

# Example setup tasks for test environment:
Expand Down
Loading