mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
15 lines
195 B
Plaintext
15 lines
195 B
Plaintext
|
|
#! /bin/sh -e
|
||
|
|
|
||
|
|
#
|
||
|
|
# Copyright (C) 2024 Intel Corporation
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: MIT
|
||
|
|
#
|
||
|
|
|
||
|
|
if [ $1 != "upgrade" ]; then
|
||
|
|
update-alternatives --quiet --remove ocloc /usr/bin/ocloc
|
||
|
|
fi
|
||
|
|
|
||
|
|
exit 0
|
||
|
|
|