These days Realm Sync for Linux has a new home. (#1850)
* These days Realm Sync for Linux has a new home. * Ignore flavor for Linux builds
This commit is contained in:
parent
d8e41fa469
commit
7ff4a05a9e
|
@ -16,6 +16,7 @@ X.Y.Z Release notes
|
|||
* [Sync] Fixed a bug which crash query-based Realms. A bug in gcc's optimizer will generate code which in some case will lead to a memory violation and eventually a segmentation fault.
|
||||
|
||||
### Internal
|
||||
* Changed download URL for Linux binaries (`scripts/download-realm.js`).
|
||||
* Upgraded to Realm Sync v3.5.1.
|
||||
* Realm Core v5.6.0.
|
||||
* Realm Sync v3.5.1.
|
||||
|
|
|
@ -192,9 +192,12 @@ function getSyncRequirements(dependencies, options, required = {}) {
|
|||
});
|
||||
}
|
||||
case 'linux':
|
||||
// flavor is ignored since we only publish Release mode
|
||||
required.SYNC_ARCHIVE = `realm-sync-Release-v${dependencies.REALM_SYNC_VERSION}-Linux-devel.tar.gz`;
|
||||
return getCoreRequirements(dependencies, options, required)
|
||||
.then(() => {
|
||||
.then(() => getSyncCommitSha(dependencies.REALM_SYNC_VERSION))
|
||||
.then(sha => {
|
||||
required.SYNC_SERVER_FOLDER += `/sha-version/${sha}`;
|
||||
return required;
|
||||
});
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue