Closed Godhart closed 2 years ago
I believe that escaping slash is missing before '$' char in add-aur.sh on line #77
add-aur.sh
... tee /bin/aur-install <<EOF #!/bin/sh if test "$#" -ne 0 then ...
if test "$#" -ne 0 should be changed to if test "\$#" -ne 0
if test "$#" -ne 0
if test "\$#" -ne 0
Without this bugfix first line in aur-install looks like if test "0" -ne 0 which obviously is incorrect
if test "0" -ne 0
thanks!
I believe that escaping slash is missing before '$' char in
add-aur.sh
on line #77if test "$#" -ne 0
should be changed toif test "\$#" -ne 0
Without this bugfix first line in aur-install looks like
if test "0" -ne 0
which obviously is incorrect