Use gawk on OpenWrt, as awk is BusyBox version

The BusyBox version of awk fails with this error:
awk: bad regex '[\\.^$(){}\[\]|*+?]': Repetition not preceded by valid expression
This commit is contained in:
Ross Smith II 2019-11-23 19:39:57 -08:00
parent 5aa1a7be75
commit 2bf98a5ade
No known key found for this signature in database
GPG Key ID: A05F962FB6A849D2
1 changed files with 1 additions and 1 deletions

2
yadm
View File

@ -40,7 +40,7 @@ FULL_COMMAND=""
GPG_PROGRAM="gpg"
GIT_PROGRAM="git"
AWK_PROGRAM="awk"
AWK_PROGRAM="${AWK_PROGRAM:-awk}"
J2CLI_PROGRAM="j2"
ENVTPL_PROGRAM="envtpl"
LSB_RELEASE_PROGRAM="lsb_release"