Fix missed parameter file reading
This commit is contained in:
parent
4c21781c4b
commit
e1c08c25b5
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue