Skip to content

Commit

Permalink
dkms, installer: Increase verbosity
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Krakow <[email protected]>
  • Loading branch information
kakra committed Nov 17, 2021
1 parent f658106 commit 64e6a27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [[ -z "${INSTALLED[*]}" ]]; then
# TODO: Works around https://github.com/dell/dkms/issues/177 for DKMS 3
echo "* adding hid-xpadneo-${VERSION} folder to /usr/src"
mkdir -p "/usr/src/hid-xpadneo-${VERSION}"
cp --recursive hid-xpadneo/. "/usr/src/hid-xpadneo-${VERSION}/."
cp --recursive "${V[@]}" hid-xpadneo/. "/usr/src/hid-xpadneo-${VERSION}/."

echo "* installing module (using DKMS)"
dkms install "${V[*]}" "hid-xpadneo/${VERSION}" --force || cat_dkms_make_log
Expand Down
2 changes: 1 addition & 1 deletion uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ do
dkms remove "${V[*]}" "hid-xpadneo/${instance}" --all

echo " * removing $instance folder from /usr/src"
rm --recursive "/usr/src/hid-xpadneo-$instance/"
rm --recursive "${V[@]}" "/usr/src/hid-xpadneo-$instance/"
done

0 comments on commit 64e6a27

Please sign in to comment.