10 lines
252 B
Text
10 lines
252 B
Text
|
#!/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
|
||
|
|