Using true instead of /bin/true

This commit is contained in:
Sergio Durigan Junior 2015-02-04 20:37:24 -05:00
parent 0cbf7ca807
commit a68352a2e9

View file

@ -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)