From d423611ac2f6a8f2d98382115a20fd346f82521f Mon Sep 17 00:00:00 2001 From: Jacob Walser Date: Tue, 29 Jan 2019 15:10:46 -0500 Subject: [PATCH] setup.py: bugfix scripts path --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cfd4adcd..551f414e 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,6 @@ ], scripts=[ "examples/simplePingExample.py", - "brping/pingproxy.py", - "brping/ping1d-simulation.py"] + "tools/pingproxy.py", + "tools/ping1d-simulation.py"] )