Modified grep command to only match package name in the beginning in section build files which in turn fixes faulty current package name output to build monitor

This commit is contained in:
PktSurf 2022-10-04 00:40:42 +05:30
parent c4d1dafb3d
commit ff7639942a
7 changed files with 7 additions and 7 deletions

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&

View file

@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
echo "*** Building package '$package'..." echo "*** Building package '$package'..."
echo "*********************************************************************" echo "*********************************************************************"
# Get the current package number from the build list # Get the current package number from the build list
currentpkgnumber="$(grep -wn "$package" .buildlist.$section | cut -d: -f 1)" currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)"
export currentpkgnumber export currentpkgnumber
mkdir -p $pkgdest/$subdir mkdir -p $pkgdest/$subdir
( cd $package && export pkgdest=$pkgdest/$subdir && ( cd $package && export pkgdest=$pkgdest/$subdir &&