Bug 39342 - unbound variable в /usr/bin/remmina-file-wrapper
Summary: unbound variable в /usr/bin/remmina-file-wrapper
Status: NEW
Alias: None
Product: Sisyphus
Classification: Development
Component: remmina (show other bugs)
Version: unstable
Hardware: x86_64 Linux
: P5 normal
Assignee: Alexey Shabalin
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-11-25 11:15 MSK by Anton Shevtsov
Modified: 2020-11-25 11:15 MSK (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anton Shevtsov 2020-11-25 11:15:21 MSK
если запускать из меню, то не запускается потому что в файлике /usr/bin/remmina-file-wrapper из коробки вот такая ошибка
/usr/bin/remmina-file-wrapper: line 49: @: unbound variable

я сделал костыль, с которым работает

--- ./remmina-file-wrapper.orig 2020-11-25 11:48:00.478255692 +0500
+++ ./remmina-file-wrapper      2020-11-25 13:09:32.061607112 +0500
@@ -46,6 +46,10 @@
         "$REMMINA" "${@#remmina:\/\/}"
         ;;
     *)
+       if [[ "$#" == 0 ]]; then 
+       "$REMMINA" 
+       else
         "$REMMINA" "${@}"
+       fi
         ;;
 esac