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:
parent
c4d1dafb3d
commit
ff7639942a
7 changed files with 7 additions and 7 deletions
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
|
@ -207,7 +207,7 @@ mkdir -p $pkgdest $logsdir/$section
|
|||
echo "*** Building package '$package'..."
|
||||
echo "*********************************************************************"
|
||||
# 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
|
||||
mkdir -p $pkgdest/$subdir
|
||||
( cd $package && export pkgdest=$pkgdest/$subdir &&
|
||||
|
|
Loading…
Reference in a new issue