Revert "Revert the way to retrieve the sync sha1"

This commit is contained in:
Kenneth Geisshirt 2018-06-11 15:06:35 +02:00 committed by GitHub
parent 86d56c669e
commit 7c01a8da62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -195,9 +195,9 @@ function getSyncRequirements(dependencies, options, required = {}) {
// 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(() => getSyncCommitSha(dependencies.REALM_SYNC_VERSION))
.then(sha => {
required.SYNC_SERVER_FOLDER += `/sha-version/${sha}`;
.then(() => {
const private_dependencies = ini.parse(fs.readFileSync(path.resolve(__dirname, '../../dependencies.list'), 'utf8'));
required.SYNC_SERVER_FOLDER += `/sha-version/${private_dependencies.REALM_SYNC_SHA}`;
return required;
});
default: