[REM] deprecated bin

bzr revid: al@openerp.com-20121209193548-m6wjd0kad8aidp5l
This commit is contained in:
Antony Lesuisse 2012-12-09 20:35:48 +01:00
parent 17ec9a3422
commit 52f4431198
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
#! /usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import sys
if __name__ == "__main__":
print '-' * 70
print "DEPRECATED: you are starting the OpenERP server with its old path,"
print "please use the new executable (available in the parent directory)."
print '-' * 70
# Change to the parent directory ...
os.chdir(os.path.normpath(os.path.dirname(__file__)))
os.chdir('..')
# ... and execute the new executable.
os.execv('openerp-server', sys.argv)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: