From d8478393f43fdae80622e8b28481a8396e10e626 Mon Sep 17 00:00:00 2001 From: Emanuele Zattin Date: Fri, 8 Jun 2018 10:01:35 +0200 Subject: [PATCH] Revert the way to retrieve the sync sha1 --- scripts/download-realm.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/download-realm.js b/scripts/download-realm.js index f2513a1b..869a24f7 100644 --- a/scripts/download-realm.js +++ b/scripts/download-realm.js @@ -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(() => { - const private_dependencies = ini.parse(fs.readFileSync(path.resolve(__dirname, '../../dependencies.list'), 'utf8')); - required.SYNC_SERVER_FOLDER += `/sha-version/${private_dependencies.REALM_SYNC_SHA}`; + .then(() => getSyncCommitSha(dependencies.REALM_SYNC_VERSION)) + .then(sha => { + required.SYNC_SERVER_FOLDER += `/sha-version/${sha}`; return required; }); default: