diff options
Diffstat (limited to 'imageconverter2.sh')
-rw-r--r-- | imageconverter2.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/imageconverter2.sh b/imageconverter2.sh index 398398461fee..4cfe3ac09dd8 100644 --- a/imageconverter2.sh +++ b/imageconverter2.sh @@ -23,7 +23,7 @@ if [[ -f "${_FLAGS_FILE}" ]]; then fi cd "${_APPDIR}" if [[ "${EUID}" -ne 0 ]] || [[ "${ELECTRON_RUN_AS_NODE}" ]]; then - exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" "${_USER_FLAGS[@]}" "$@" + exec electron@electronversion@ "${_RUNNAME}" ${_OPTIONS} "${_USER_FLAGS[@]}" "$@" else - exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" --no-sandbox "${_USER_FLAGS[@]}" "$@" + exec electron@electronversion@ "${_RUNNAME}" ${_OPTIONS} --no-sandbox "${_USER_FLAGS[@]}" "$@" fi
\ No newline at end of file |