uci-docker-build/rebuild

13 lines
184 B
Bash
Executable File

#!/bin/bash
# three ways to invoke with --no-cache
# inline
# NO_CACHE=true ./build "$@"
# with -n option (prefered)
./build -n "$@"
# as export
#export NO_CACHE=true
#./build "$@"