Revert "try hardcode bin"

This reverts commit 52f0cb53fd.
This commit is contained in:
Trent Billington 2020-03-13 23:49:40 +11:00
parent 52f0cb53fd
commit c294c0e9c2

View file

@ -15,9 +15,9 @@ required_arg $CROSS 'CROSS'
required_arg $TARGET_TRIPLE '<Target Triple>'
if [ -z "$RELEASE_BUILD" ]; then
$CROSS build --target $TARGET_TRIPLE --bin kondo
$CROSS build --target $TARGET_TRIPLE --all-features --bin kondo
$CROSS build --target $TARGET_TRIPLE
$CROSS build --target $TARGET_TRIPLE --all-features
else
$CROSS build --target $TARGET_TRIPLE --all-features --release --bin kondo
$CROSS build --target $TARGET_TRIPLE --all-features --release
fi