浏览代码

fix: insufficient-disk-capacity argument

姚凯 7 月之前
父节点
当前提交
c3f064fa4c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/manage.py

+ 1 - 1
scripts/manage.py

@@ -958,7 +958,7 @@ def install():
             log.warning(text('path-exists', safeline_path))
             log.warning(text('path-exists', safeline_path))
             continue
             continue
         if free_space(safeline_path) < 5 * 1024 * 1024 * 1024:
         if free_space(safeline_path) < 5 * 1024 * 1024 * 1024:
-            log.warning(text('insufficient-disk-capacity'))
+            log.warning(text('insufficient-disk-capacity', safeline_path))
             continue
             continue
         break
         break