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
Running UrtUpdater_Ded.sh on Arch Linux i get the following error:
./UrTUpdater_Ded.sh: line 240: tempfile: command not found
./UrTUpdater_Ded.sh: line 242: : No such file or directory
cat: '': No such file or directory
./UrTUpdater_Ded.sh: line 240: tempfile: command not found
./UrTUpdater_Ded.sh: line 242: : No such file or directory
cat: '': No such file or directory
It appears that tempfile is not supported on non-Debian-based Linux distributions, like Arch.
I suggest replacing it with mktemp, which is part of the coreutils package.
The text was updated successfully, but these errors were encountered:
I'm preferring tempfile over mktemp if it exists because it has suffix support (newer versions of mktemp have suffix support via --suffix but this is not universal).
Running UrtUpdater_Ded.sh on Arch Linux i get the following error:
It appears that
tempfile
is not supported on non-Debian-based Linux distributions, like Arch.I suggest replacing it with
mktemp
, which is part of thecoreutils
package.The text was updated successfully, but these errors were encountered: