mirror of
https://github.com/miskcoo/ugreen_dx4600_leds_controller.git
synced 2025-07-23 04:13:04 +02:00
Some checks failed
Build kernel module for TrueNAS / build-and-run (push) Has been cancelled
17 lines
326 B
Bash
17 lines
326 B
Bash
#!/usr/bin/bash
|
|
|
|
set -x
|
|
|
|
git clone https://github.com/miskcoo/ugreen_leds_controller.git
|
|
cd ugreen_leds_controller
|
|
|
|
if [ ! -z $1 ]; then
|
|
git checkout $1
|
|
fi
|
|
|
|
bash build-scripts/debian/build-dkms-deb.sh
|
|
bash build-scripts/debian/build-utils-deb.sh
|
|
dpkg-name led-ugreen-dkms.deb
|
|
dpkg-name led-ugreen-utils.deb
|
|
mv *.deb ..
|