Skip to content

Commit 7ebb222

Browse files
committed
[C#] Fix script warnings.
1 parent 2851471 commit 7ebb222

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csharp/pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
DIR="$(dirname "${BASH_SOURCE[0]}")"
3-
cd $DIR
3+
cd "${DIR}" || exit
44
(cd .. && ./gradlew build)
55
(cd sbe-dll && dotnet pack -c release -o ../nuget)

csharp/runtests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
DIR="$(dirname "${BASH_SOURCE[0]}")"
3-
cd $DIR
3+
cd "${DIR}" || exit
44
(cd ../; ./gradlew runExampleUsingGeneratedStub -Dsbe.encoding.filename=csharp/sbe-tests/ExampleUsingGeneratedStub.sbe)
55
(cd sbe-tests && dotnet test)

0 commit comments

Comments
 (0)