diff options
author | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-01-08 23:07:08 +0200 |
---|---|---|
committer | Yaroslav Brustinov <ybrustin@cisco.com> | 2016-01-08 23:07:08 +0200 |
commit | 6e0de1a39a4ff389a5669c91e07bf938b3b99d28 (patch) | |
tree | a4aff19dffb055152c2f741f6582140aeeb4e81e /linux_dpdk | |
parent | 148fd251911869db33df03f7fd3287c1f76f2fa4 (diff) |
ws_main.py: don't expect for env. vars if building local package
regression: increase maximal allowed latency to 100ms on VM (50ms is not enough)
Diffstat (limited to 'linux_dpdk')
-rwxr-xr-x | linux_dpdk/ws_main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux_dpdk/ws_main.py b/linux_dpdk/ws_main.py index 19ff9298..e95dd260 100755 --- a/linux_dpdk/ws_main.py +++ b/linux_dpdk/ws_main.py @@ -918,11 +918,12 @@ def pkg(self): def release(bld, custom_dir = None): """ release to local folder """ - exec_p = Env().get_release_path() if custom_dir: exec_p = custom_dir elif not check_release_permission(): return + else + exec_p = Env().get_release_path() print "copy images and libs" os.system(' mkdir -p '+exec_p); |