Skip to content

Commit 3bc5604

Browse files
authored
Fixed "unary operator expected" error (dotnet#40597)
1 parent 8b62081 commit 3bc5604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

startvscode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ ! -f "$DOTNET_ROOT/dotnet" ]; then
2020
exit 1
2121
fi
2222

23-
if [ $1 = "" ]; then
23+
if [[ $1 == "" ]]; then
2424
code .
2525
else
2626
code $1

0 commit comments

Comments
 (0)