File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " sharun"
3- version = " 0.7.1 "
3+ version = " 0.7.2 "
44readme = " README.md"
55license = " MIT"
66repository = " https://github.com/VHSgunzo/sharun"
Original file line number Diff line number Diff line change @@ -63,15 +63,13 @@ problematic_vars="BABL_PATH GBM_BACKENDS_PATH GCONV_PATH GDK_PIXBUF_MODULEDIR \
6363 QT_PLUGIN_PATH SPA_PLUGIN_DIR TCL_LIBRARY TK_LIBRARY XTABLES_LIBDIR"
6464
6565for var in $problematic_vars; do
66- eval checkvar="\$$var"
67- case "$checkvar" in
68- ' ' )
69- continue
70- ;;
66+ eval "value=\"\$$var\""
67+ case "$value" in
7168 "$APPDIR"/*)
7269 unset "$var"
73- >&2 echo "unset $var to prevent issues"
70+ echo "unset $var to prevent issues" >&2
7471 ;;
72+ *) continue ;;
7573 esac
7674done
7775
You can’t perform that action at this time.
0 commit comments