From 167acefe8a9a9c3f9954976e5f6ce1a2745fc9b9 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 30 Aug 2003 05:10:08 +0000 Subject: [PATCH] Guarded against crazy win32 boxes. --- scripts/setup.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/scripts/setup.py b/scripts/setup.py index 349a69768..04fe25709 100644 --- a/scripts/setup.py +++ b/scripts/setup.py @@ -253,9 +253,14 @@ if __name__ == '__main__': os.chmod(filename, 0755) - print - print 'You\'re done! Now run the bot with the command line:' - print './%s' % filename - print - + if sys.platform == 'win32': + print + print 'You\'re done! Run the bot however works for you.' + print + else: + print + print 'You\'re done! Now run the bot with the command line:' + print './%s' % filename + print + # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: