Skip to content

Commit

Permalink
Closes #23
Browse files Browse the repository at this point in the history
  • Loading branch information
randomouscrap98 committed Jun 19, 2024
1 parent 9d2cccb commit d79fc00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash
set -e

# Before doing anything, let's get rid of dist and build
rm -rf build
rm -rf dist

cwd=$(pwd)
cd arduboy
go test -v
Expand All @@ -18,7 +22,7 @@ build() {

distdir="$cwd/dist"
mkdir -p $distdir
zip $distdir/ardugotools_${1}_${2}.zip $builddir/$exename
zip -j $distdir/ardugotools_${1}_${2}.zip $builddir/$exename
}

build windows amd64
Expand Down

0 comments on commit d79fc00

Please sign in to comment.