Commit e1995838 by Feanil Patel

Run migration from the code dirs(needed for CMS because of dealer.)

parent ee599abb
...@@ -104,6 +104,7 @@ if __name__ == '__main__': ...@@ -104,6 +104,7 @@ if __name__ == '__main__':
code_dir=args.edxapp_code_dir, code_dir=args.edxapp_code_dir,
env=service) env=service)
if os.path.exists(args.edxapp_code_dir): if os.path.exists(args.edxapp_code_dir):
os.chdir(args.edxapp_code_dir)
# Run migration check command. # Run migration check command.
output = subprocess.check_output(cmd, shell=True) output = subprocess.check_output(cmd, shell=True)
if 'Migrating' in output: if 'Migrating' in output:
...@@ -113,6 +114,7 @@ if __name__ == '__main__': ...@@ -113,6 +114,7 @@ if __name__ == '__main__':
code_dir=xqueue_code_dir, code_dir=xqueue_code_dir,
env=service) env=service)
if os.path.exists(args.xqueue_code_dir): if os.path.exists(args.xqueue_code_dir):
os.chdir(args.xqueue_code_dir)
# Run migration check command. # Run migration check command.
output = subprocess.check_output(cmd, shell=True) output = subprocess.check_output(cmd, shell=True)
if 'Migrating' in output: if 'Migrating' in output:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment