Fix docker-sonic-mgmt reproducible related issue. (#9647)
Reproducible build script breaks docker-sonic-mgmt build.
This commit is contained in:
parent
98da6ebaa7
commit
3844ae8290
@ -17,6 +17,12 @@ REPR_MIRROR_URL_PATTERN='http:\/\/packages.trafficmanager.net\/debian'
|
||||
|
||||
URL_PREFIX=$(echo "${PACKAGE_URL_PREFIX}" | sed -E "s#(//[^/]*/).*#\1#")
|
||||
|
||||
if [ $USER != 'root' ] && [ -n $(which sudo) ];then
|
||||
SUDO=sudo
|
||||
else
|
||||
SUDO=''
|
||||
fi
|
||||
|
||||
log_err()
|
||||
{
|
||||
echo "$1" >> $LOG_PATH/error.log
|
||||
@ -72,7 +78,7 @@ set_reproducible_mirrors()
|
||||
|
||||
local mirrors="/etc/apt/sources.list $(find /etc/apt/sources.list.d/ -type f)"
|
||||
for mirror in $mirrors; do
|
||||
sed -i "$expression" "$mirror"
|
||||
$SUDO sed -i "$expression" "$mirror"
|
||||
done
|
||||
}
|
||||
|
||||
@ -161,7 +167,7 @@ run_pip_command()
|
||||
install=y
|
||||
elif [[ "$para" == *.whl ]]; then
|
||||
package_name=$(echo $para | cut -d- -f1 | tr _ .)
|
||||
sed "/^${package_name}==/d" -i $tmp_version_file
|
||||
$SUDO sed "/^${package_name}==/d" -i $tmp_version_file
|
||||
fi
|
||||
done
|
||||
|
||||
|
Reference in New Issue
Block a user