mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Fix automated install using the wrong release information.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20148 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
10c1fef096
commit
a4cd1d9dab
1 changed files with 2 additions and 2 deletions
|
|
@ -509,8 +509,8 @@ void RbUtilQt::installBtn()
|
||||||
bool RbUtilQt::installAuto()
|
bool RbUtilQt::installAuto()
|
||||||
{
|
{
|
||||||
QString file = QString("%1/%2/rockbox-%3-%4.zip")
|
QString file = QString("%1/%2/rockbox-%3-%4.zip")
|
||||||
.arg(settings->releaseUrl(), versmap.value(settings->curPlatform()),
|
.arg(settings->releaseUrl(), versmap.value("rel_rev"),
|
||||||
settings->curPlatform(), versmap.value(settings->curPlatform()));
|
settings->curPlatform(), versmap.value("rel_rev"));
|
||||||
buildInfo.open();
|
buildInfo.open();
|
||||||
QSettings info(buildInfo.fileName(), QSettings::IniFormat, this);
|
QSettings info(buildInfo.fileName(), QSettings::IniFormat, this);
|
||||||
buildInfo.close();
|
buildInfo.close();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue