Skip to content

Commit

Permalink
Fix docker-sonic-mgmt reproducible related issue. (#9647)
Browse files Browse the repository at this point in the history
Reproducible build script breaks docker-sonic-mgmt build.
  • Loading branch information
liushilongbuaa authored Jan 5, 2022
1 parent 98da6eb commit 3844ae8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/sonic-build-hooks/scripts/buildinfo_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
}

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 3844ae8

Please sign in to comment.