fix goreleaser builds

wrapped tsc in a a shell script to ignore duplicate function errors.
This commit is contained in:
Harvey Tindall
2020-09-25 00:11:52 +01:00
parent e104bd8362
commit 9fec714da7
4 changed files with 7 additions and 2 deletions
Executable
+4
View File
@@ -0,0 +1,4 @@
#!/usr/bin/bash
set +e
npx tsc -p ts/
set -e