saidsay-so / acpi_ec

Kernel module to access directly to the ACPI EC.
GNU General Public License v3.0
48 stars 7 forks source link

Fatal error running install.sh #16

Closed Clara81221 closed 3 months ago

Clara81221 commented 5 months ago
$ sudo bash install.sh
fatal: not a git repository (or any of the parent directories): .git

MSI Creator Z16P // Kali Linux

feelingwalnut commented 5 months ago

Sudo ./install.sh

?

Clara81221 commented 5 months ago

No luck. Same error. The file is there too, I checked.

feelingwalnut commented 5 months ago

hmm, I believe all I did was extract it all to a folder from the 1.0.4 source release and ran the script. on debian.

been a while.

Clara81221 commented 5 months ago

Yea it seems like it should work but I'm not sure why it's not

RizzoV commented 5 months ago

The installation script as is would require the .git directory to be bundled into the zip, which is not.

Replace line 36 in install.sh as following for a temporary workaround

- VERSION=$(git describe --tags --abbrev=0)
+ VERSION="1.0.4"
Clara81221 commented 4 months ago

Installation worked, thank you