Revert "Fix missed parameter file reading"
This reverts commit e1c08c25b5
.
This fix was a mistake. No reading is needed, this is explorer
execution on the remote.
This commit is contained in:
parent
e1c08c25b5
commit
6d2e81d0dc
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
|
||||
not_supported() {
|
||||
echo "Your operating system ($(cat "$__explorer/os")) is currently not supported." >&2
|
||||
echo "Your operating system ($("$__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=$(cat "$__explorer/os")
|
||||
os=$("$__explorer/os")
|
||||
|
||||
not_supported() {
|
||||
echo "Your operating system ($os) is currently not supported." >&2
|
||||
|
|
Loading…
Reference in a new issue