Skip to content

Commit f51debe

Browse files
committed
fix: fix spawn script to properly pass args
1 parent 0418228 commit f51debe

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)