7 lines
125 B
Bash
Executable file
7 lines
125 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
: "${TARGET?The TARGET environment variable must be set.}"
|
|
|
|
! cargo build --target "${TARGET}"
|