14 lines
222 B
Plaintext
14 lines
222 B
Plaintext
|
#!/bin/bash
|
||
|
# three ways to invoke with --no-cache
|
||
|
|
||
|
# inline
|
||
|
# NO_CACHE=true ./build "$@"
|
||
|
|
||
|
# with -n option (prefered)
|
||
|
./build -n "$@"
|
||
|
alias rebuild="build -nfunction_list"
|
||
|
|
||
|
# as export
|
||
|
#export NO_CACHE=true
|
||
|
#./build "$@"
|