Overview
Comment:Return status 2 if upgrade was done
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: ac16e45cb7bfd4c7ec41764ba221824f0e905ddd
User & Date: bohwaz on 2020-12-04 19:18:36
Other Links: branch diff | manifest | tags
Context
2020-12-04
19:23
Make sure preCheck returns a boolean check-in: 89686bb4b8 user: bohwaz tags: dev
19:18
Return status 2 if upgrade was done check-in: ac16e45cb7 user: bohwaz tags: dev
19:14
Rename ERRORS_ENABLE_LOG_VIEW constant check-in: 6d031182c9 user: bohwaz tags: dev
Changes

Modified src/scripts/upgrade.php from [870e8fc172] to [75cd00f0f0].

14
15
16
17
18
19
20


21
22
23
			Upgrade::upgrade();
		}
	}
	catch (UserException $e) {
		echo $e->getMessage() . PHP_EOL;
		exit(1);
	}


}

exit(0);







>
>



14
15
16
17
18
19
20
21
22
23
24
25
			Upgrade::upgrade();
		}
	}
	catch (UserException $e) {
		echo $e->getMessage() . PHP_EOL;
		exit(1);
	}

	exit(2);
}

exit(0);