This commit is contained in:
Lubos Dolezel 2021-02-02 21:48:38 +01:00
parent 9061cc46c4
commit 8be134239b

View File

@ -90,7 +90,10 @@ void Installer::installPackage()
throw std::runtime_error(ss.str());
}
installPayload(pkgref.path.c_str() + 1);
const char* path = pkgref.path.c_str();
if (*path == '#')
path++;
installPayload(path);
}
}
}