Fix for loop for FreeBSD
This commit is contained in:
parent
6fa013ff14
commit
140be16b5c
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ KERNEL=`uname -s`
|
|||
if [ "$KERNEL" = "FreeBSD" ]
|
||||
then
|
||||
|
||||
for PK in $FBSD_PACKAGES_LIST
|
||||
for PK in `echo $FBSD_PACKAGES_LIST`
|
||||
do
|
||||
if ! pkg info "$PK" > /dev/null 2> /dev/null
|
||||
then
|
||||
|
|
Reference in a new issue