Update file permission setting in ChineseNfoRegistry to allow full access
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 12s
Docker Build & Deploy / Deploy to Production (push) Successful in 4s

This commit is contained in:
孙诚
2025-03-19 15:21:29 +08:00
parent fbea48813e
commit 30813961ad

View File

@@ -65,7 +65,7 @@ public class ChineseNfoRegistry : Registry, IChineseNfoRegistry
var skippedCount = 0; var skippedCount = 0;
// 使用 root 角色执行 chmod -R 666 设置全部文件的读写权限 // 使用 root 角色执行 chmod -R 666 设置全部文件的读写权限
var permission = new ProcessStartInfo("chmod", "-R 666 " + tvFolder) var permission = new ProcessStartInfo("chmod", "-R 777 " + tvFolder)
{ {
CreateNoWindow = true, CreateNoWindow = true,
UseShellExecute = false UseShellExecute = false