fix(updater): change to actual dir
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Florian Schmitt 2025-03-25 22:24:06 +03:00
parent 9760321d97
commit f4c48be28b

View file

@ -373,6 +373,7 @@ function cli($cmd)
function runUpgrades($sudo, $destDir)
{
$startDir = getcwd();
chdir($destDir);
cli($sudo.' ./yeswicli upgrade');
cli($sudo.' ./yeswicli migrate');
chdir($startDir);