Skip to content

Commit 51ac589

Browse files
authored
Fix shebang in ps1 scripts
1 parent 02aafb2 commit 51ac589

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/seed-database.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/pwsh
1+
#!/usr/bin/env pwsh
22

33
# Source common utilities
44
. "$PSScriptRoot/common.ps1"

scripts/start-app.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Source common utilities
1+
#!/usr/bin/env pwsh
2+
23
. "$PSScriptRoot/common.ps1"
34

45
# Store initial directory

0 commit comments

Comments
 (0)