Skip to content

Commit

Permalink
[bug] fix self-update backup path
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Jul 27, 2021
1 parent a088c6a commit 4657c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SelfUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
{
$io = new SymfonyStyle($input, $output);
$updater = new Updater(null, false, Updater::STRATEGY_GITHUB);
$updater->setBackupPath(\sys_get_temp_dir());
$updater->setBackupPath(\sys_get_temp_dir().'/phpmyadmin.phar.bak');

if ($input->getOption('rollback')) {
if ($updater->rollback()) {
Expand Down

0 comments on commit 4657c8f

Please sign in to comment.