Skip to content

Commit e45f23d

Browse files
authored
Merge pull request #67 from codecrafters-io/CC-1170
fix: fix spawn script to properly pass args
2 parents 7910e85 + f51debe commit e45f23d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiled_starters/csharp/your_sqlite3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# CodeCrafters uses this file to test your code. Don't make any changes here!
66
#
77
# DON'T EDIT THIS!
8-
exec dotnet run --project . --configuration Release "$@"
8+
exec dotnet run --project . --configuration Release -- "$@"

solutions/csharp/01-init/code/your_sqlite3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# CodeCrafters uses this file to test your code. Don't make any changes here!
66
#
77
# DON'T EDIT THIS!
8-
exec dotnet run --project . --configuration Release "$@"
8+
exec dotnet run --project . --configuration Release -- "$@"

starter_templates/csharp/your_sqlite3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# CodeCrafters uses this file to test your code. Don't make any changes here!
66
#
77
# DON'T EDIT THIS!
8-
exec dotnet run --project . --configuration Release "$@"
8+
exec dotnet run --project . --configuration Release -- "$@"

0 commit comments

Comments
 (0)