IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
浏览代码

Another fix.

tags/0.92
父节点
当前提交
177922e29c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      jail.py

+ 1
- 1
jail.py 查看文件

@@ -10,7 +10,7 @@ def jail_run(path, command):
try:
res = subprocess.run(command)
finally:
subprocess.run(['umount', os.path.join(path, 'dev')])
subprocess.run(['umount', '-f', os.path.join(path, 'dev')])
if res.returncode != 0:
# subprocess.run(['umount', os.path.join(path, 'dev')])
raise RuntimeError('Command failed')


正在加载...
取消
保存