diff options
| -rw-r--r-- | tests/actions/package/localpkg/test.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/actions/package/localpkg/test.lua b/tests/actions/package/localpkg/test.lua index ae685d928..9f581ddab 100644 --- a/tests/actions/package/localpkg/test.lua +++ b/tests/actions/package/localpkg/test.lua @@ -1,8 +1,10 @@ function main(t) + os.exec("xmake g --network=private") os.cd("libfoo") os.exec("xmake package -vD -o ../bar/build") os.cd("../bar") os.exec("xmake f -c -vD") os.exec("xmake -vD") os.exec("xmake run") + os.exec("xmake g --network=public") end |
