File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -114,22 +114,18 @@ InstallIGFX () {
114
114
| grep " .*deb" \
115
115
| wget -qi -
116
116
get_release intel/compute-runtime $CR_TAG \
117
- | grep -E " .*((deb)|(sum))" \
117
+ | grep -E " .*((\. deb)|(sum))" \
118
118
| wget -qi -
119
- # Perform the checksum conditionally and then get the release
120
- # Skip the ww45 checksum because the igc_dev driver was manually updated
121
- # so the package versions don't exactly match.
122
- if [ ! -f " ww45.sum" ]; then
123
- sha256sum -c * .sum
124
- fi
119
+ # We don't download .ddeb packages, so ignore missing ones.
120
+ sha256sum -c * .sum --ignore-missing
125
121
get_release intel/cm-compiler $CM_TAG \
126
122
| grep " .*deb" \
127
123
| grep -v " u18" \
128
124
| wget -qi -
129
125
get_release oneapi-src/level-zero $L0_TAG \
130
126
| grep " .*$UBUNTU_VER .*deb$" \
131
127
| wget -qi -
132
- dpkg -i --force-all * .deb && rm * .deb * .ddeb * . sum
128
+ dpkg -i --force-all * .deb && rm * .deb * .sum
133
129
mkdir -p /usr/local/lib/igc/
134
130
echo " $IGC_TAG " > /usr/local/lib/igc/IGCTAG.txt
135
131
if [ " $IS_IGC_DEV " == " Yes" ]; then
You can’t perform that action at this time.
0 commit comments