Revision 8881
Added by Aaron Marcuse-Kubitza over 11 years ago
run | ||
---|---|---|
5 | 5 |
|
6 | 6 |
import () |
7 | 7 |
{ |
8 |
echo_func "$@"
|
|
8 |
echo_func |
|
9 | 9 |
make |
10 | 10 |
} |
11 | 11 |
|
Also available in: Unified diff
*{.sh,run}: changed echo_func to an alias that includes the "$
", so that callers don't need to specify the "$
" manually. although the original echo_func function is still there, callers need to switch over to the alias at the same time as it's defined because otherwise the "$@" would be doubled, since echo_func refers to the alias instead.