mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
run-hooks: Handle hooks after OS upgrade on fresh install.
(cherry picked from commit fc962b8b0e)
This commit is contained in:
committed by
Tim Abbott
parent
bffaff037e
commit
9a2194ef6c
@@ -30,6 +30,10 @@ deploy_path = get_deploy_root()
|
||||
|
||||
if args.kind == "post-deploy":
|
||||
old_dir_name = "last"
|
||||
if not os.path.exists(DEPLOYMENTS_DIR + "/last"):
|
||||
# Fresh installs which are doing an OS upgrade don't have a
|
||||
# "last" yet
|
||||
old_dir_name = "current"
|
||||
else:
|
||||
old_dir_name = "current"
|
||||
old_version = parse_version_from(DEPLOYMENTS_DIR + "/" + old_dir_name)
|
||||
|
||||
Reference in New Issue
Block a user