55648e8155
fully operational caddy death star
9 lines
252 B
Bash
Executable file
9 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
build=${UDBUILD:-$(command -v udbuild)}
|
|
if [[ $build ]];then
|
|
DIR=$(dirname "$(realpath "$BASH_SOURCE")")
|
|
$build -t dev -e $DIR/build.env "$@"
|
|
else
|
|
echo can not find UCI Docker Build script, run ./install from the uci-docker-build repo
|
|
fi
|
|
|