mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 13:27:39 +03:00
Skip shared paths
This commit is contained in:
parent
cc559556fc
commit
6089c358c2
1 changed files with 11 additions and 4 deletions
|
@ -50,6 +50,11 @@ func run0(cmd *cobra.Command, args []string) {
|
|||
}
|
||||
}
|
||||
|
||||
var skipPaths = []string{
|
||||
"/usr/lib",
|
||||
"/usr/lib64",
|
||||
}
|
||||
|
||||
func run1() error {
|
||||
os.Setenv("LD_LIBRARY_PATH", os.ExpandEnv("$LD_LIBRARY_PATH:/usr/local/lib:$PWD"))
|
||||
|
||||
|
@ -99,10 +104,12 @@ func run1() error {
|
|||
ldName = it.Name()
|
||||
return false
|
||||
}
|
||||
/*if strings.HasPrefix(it.FullName, "/usr/lib") {
|
||||
logrus.Info("skipped ", it.FullName)
|
||||
return false
|
||||
}*/
|
||||
for _, path := range skipPaths {
|
||||
if strings.HasPrefix(it.FullName, path) {
|
||||
logrus.Info(">> skipped ", it.FullName)
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
})
|
||||
if ldName == "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue