mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
15 lines
195 B
Bash
15 lines
195 B
Bash
#! /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
|
|
|