From a68352a2e96fe20efda299b541ace1fbfbc30fc3 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Wed, 4 Feb 2015 20:37:24 -0500 Subject: [PATCH] Using true instead of /bin/true --- lib/gdbcommand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gdbcommand.py b/lib/gdbcommand.py index c3815cb..8c35094 100644 --- a/lib/gdbcommand.py +++ b/lib/gdbcommand.py @@ -9,7 +9,7 @@ from shutil import copyfile class CopyOldGDBSumFile (ShellCommand): """Copy the current gdb.sum file into the old_gdb.sum file.""" name = "copy gdb.sum file" - command = [ '/bin/true' ] + command = [ 'true' ] def __init__ (self, **kwargs): ShellCommand.__init__ (self, **kwargs)