upgrade: Remove disused hack for `zulip-dropbox.png`.

I believe this hack is no longer being triggered; so cut it out.
This commit is contained in:
Greg Price 2017-07-28 23:01:30 -07:00 committed by Tim Abbott
parent 2d534e7397
commit 5002d9ecb9
1 changed files with 0 additions and 5 deletions

View File

@ -64,11 +64,6 @@ try:
subprocess.check_call(["ln", "-nsf", "/etc/zulip/settings.py",
os.path.join(deploy_path, "zproject/prod_settings.py")])
# Hack to deploy images not included in open source project
if os.path.exists("/etc/zulip/zulip-dropbox.png"):
subprocess.check_call(["cp", "-a", "/etc/zulip/zulip-dropbox.png",
os.path.join(deploy_path, "static/images/logo")])
subprocess.check_call(["sudo", os.path.join(deploy_path, "scripts", "lib", "upgrade-zulip-stage-2"),
deploy_path, "--from-git"] + deploy_options)
finally: