You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
apps-addupdate now uses a mktemp command with no arguments to create a temporary file. Older versions of OS X (and maybe other OSes) require a template for mktemp.
apps-addupdate now uses a
mktemp
command with no arguments to create a temporary file. Older versions of OS X (and maybe other OSes) require a template for mktemp.According to https://stackoverflow.com/questions/31396985/why-is-mktemp-on-os-x-broken-with-a-command-that-worked-on-linux, the most OS agnostic way of call mktemp is:
mktemp "${TMPDIR:-/tmp}/XXXXXXXXX"
The text was updated successfully, but these errors were encountered: