Fix missed parameter file reading

This commit is contained in:
Darko Poljak 2019-10-07 11:29:28 +02:00
parent 4c21781c4b
commit e1c08c25b5
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#
not_supported() {
echo "Your operating system ($("$__explorer/os")) is currently not supported." >&2
echo "Your operating system ($(cat "$__explorer/os")) is currently not supported." >&2
echo "Cannot extract group information." >&2
echo "Please contribute an implementation for it if you can." >&2
exit 1

View File

@ -23,7 +23,7 @@
#
name=$__object_id
os=$("$__explorer/os")
os=$(cat "$__explorer/os")
not_supported() {
echo "Your operating system ($os) is currently not supported." >&2