compute-runtime/scripts/packaging/ubuntu/debian/intel-ocloc.prerm

15 lines
195 B
Plaintext
Raw Normal View History

#! /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