From d65c89e90182b03041e126219079f01f13bb4e05 Mon Sep 17 00:00:00 2001 From: Tully Foote Date: Wed, 7 Mar 2012 23:33:21 +0000 Subject: [PATCH] adding output for #3881 --- tools/rosmake/scripts/rosmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rosmake/scripts/rosmake b/tools/rosmake/scripts/rosmake index ef240879..8f9c179d 100755 --- a/tools/rosmake/scripts/rosmake +++ b/tools/rosmake/scripts/rosmake @@ -43,7 +43,7 @@ def assert_rospack_built(): p = subprocess.Popen(["rospack","help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) output = p.communicate() if p.returncode != 0: - print("rospack not available.\nPlease install rospack before using rosmake and make sure it is available on your path.", file=sys.stderr) + print("rospack not available.\nPlease install rospack before using rosmake and make sure it is available on your path. %s %s"%(output[0], output[1]), file=sys.stderr) sys.exit(-1) result = 1