Skip to content

Commit d90ced8

Browse files
committed
fix for build script
Signed-off-by: Christian Lechner <[email protected]>
1 parent 18a7281 commit d90ced8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# Stop on first errror in execustion
4+
set -e
5+
26
echo "====================================================="
37
echo "==================== Dapr JS SDK ===================="
48
echo "====================================================="
@@ -20,7 +24,7 @@ mkdir build/
2024
echo "Building Library"
2125
npm install > /dev/null
2226
npm run lint > /dev/null
23-
tsc --outDir ./build/ > /dev/null
27+
tsc --outDir ./build/
2428

2529
# Prepare Publish
2630
echo "Preparing Publish"

0 commit comments

Comments
 (0)