Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/run-inigo
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "checking code for compilation errors..."
pushd $DIEGO_RELEASE_DIR/src/code.cloudfoundry.org/inigo > /dev/null
for pkg in `find . -maxdepth 1 -type d ! -path . -not -path '*/\.*'`; do
echo $pkg
go test -c ./${pkg} > /dev/null
GOOS=linux GOARCH=amd64 go test -c ./${pkg} > /dev/null
done
popd > /dev/null

Expand Down