helixarch / debtap

A script for converting .deb packages into Arch Linux packages, focused on accuracy
GNU General Public License v2.0
1.35k stars 78 forks source link

Disable file command system call sandboxing #64

Closed vkill closed 3 years ago

vkill commented 3 years ago

Hi, there

Because the "Bad system call" maybe happened on some machines.

[root@xxx tmp]# file a.txt
a.txt: empty
Bad system call
[root@xxx tmp]# echo $?
159
[root@xxx tmp]# file -S a.txt
a.txt: empty
[root@xxx tmp]# echo $?
0

Please review it. thank you.

helixarch commented 3 years ago

Useful, thank you