diff options
| author | ruki <[email protected]> | 2022-01-16 11:14:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-01-16 11:14:21 +0800 |
| commit | 3a468796f68fefda636d94985346f9a4b956b3c3 (patch) | |
| tree | b9704562919d6c83b3879f5369e1f7bf197c391e /xmake/modules/net/proxy.lua | |
| parent | 027c4dd81f9f47601f228d9b015ae0de64d300a9 (diff) | |
add builtin github mirror
Diffstat (limited to 'xmake/modules/net/proxy.lua')
| -rw-r--r-- | xmake/modules/net/proxy.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/modules/net/proxy.lua b/xmake/modules/net/proxy.lua index 6aac4af4c..809b28352 100644 --- a/xmake/modules/net/proxy.lua +++ b/xmake/modules/net/proxy.lua @@ -60,6 +60,9 @@ function _proxy_pac() end if not pacfile and not path.is_absolute(pac) then pacfile = path.join(global.directory(), pac) + if not os.isfile(pacfile) and os.isfile(path.join(os.programdir(), "scripts", "pac", pac)) then + pacfile = path.join(os.programdir(), "scripts", "pac", pac) + end end end if pacfile and os.isfile(pacfile) then |
