aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools')
-rwxr-xr-xresources/tools/topo_installation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/topo_installation.py b/resources/tools/topo_installation.py
index 660fb3b946..8b596e1390 100755
--- a/resources/tools/topo_installation.py
+++ b/resources/tools/topo_installation.py
@@ -51,7 +51,7 @@ def main():
# Installation of VPP deb packages
ret, _, err = ssh.exec_command_sudo(
- "dpkg -i {}*.deb".format(install_dir))
+ "dpkg -i {}/*.deb".format(install_dir))
if ret != 0:
print "Installation unsuccessful:\n{}".format(err)
return ret