Merge pull request #3 from alexboner/master

fix: obtaining kernel version
This commit is contained in:
eoli3n 2020-08-20 09:40:12 +02:00 committed by GitHub
commit 0fbe4a4105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
init
View file

@ -15,7 +15,7 @@ get_running_kernel_version () {
# Returns running kernel version
# Get running kernel version
kernel_version=$(LANG=C pacman -Qi linux | sed -n 's/^Version\s*: //p')
kernel_version=$(uname -r)
print "Current kernel version is $kernel_version"
}