From 0ff2aa61af37681c4504e7fbd0af11552f627859 Mon Sep 17 00:00:00 2001 From: Maikiwi Date: Sun, 24 Jul 2022 14:11:06 -0700 Subject: [PATCH] just to be safe --- .circleci/config.yml | 12 ------------ package.json | 1 - resources/afterPack.js | 5 +---- 3 files changed, 1 insertion(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 84153171..7a2b6ebd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -88,12 +88,6 @@ jobs: sudo dpkg --add-architecture i386 sudo apt-get update -y sudo apt-get install -y wine32 - - run: - name: Reinstall proper rust node module - command: | - cd ./node_modules/cider_utils - yarn run prebuild-downloads --platform=win32 --verbose - cd ../.. - run: name: Generate Builds (Windows) command: yarn electron-builder -w --x64 -p never @@ -119,12 +113,6 @@ jobs: sudo dpkg --add-architecture i386 sudo apt-get update -y sudo apt-get install -y wine32 - - run: - name: Reinstall proper rust node module - command: | - cd ./node_modules/cider_utils - yarn run prebuild-downloads --platform=win32 --verbose - cd ../.. - run: name: Generate Builds (Winget) command: yarn electron-builder --win -c winget.json -p never diff --git a/package.json b/package.json index 34eb6bd9..fbe42bc3 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ "airtunes2": "git+https://github.com/ciderapp/node_airtunes2.git", "castv2-client": "^1.2.0", "chokidar": "^3.5.3", - "cider_utils": "git+https://github.com/ciderapp/cider_utils.git", "discord-auto-rpc": "^1.0.16", "dns-js": "git+https://github.com/ciderapp/node-dns-js.git", "ejs": "^3.1.6", diff --git a/resources/afterPack.js b/resources/afterPack.js index 16bdbee8..7cbae403 100644 --- a/resources/afterPack.js +++ b/resources/afterPack.js @@ -24,10 +24,7 @@ exports.default = function(context) { // execSync('python3 -m castlabs_evs.vmp -n sign-pkg dist/mac',{stdio: 'inherit'}) // if (fs.existsSync('dist/mac-arm64')) // execSync('python3 -m castlabs_evs.vmp -n sign-pkg dist/mac-arm64 -z',{stdio: 'inherit'}) - - if (fs.existsSync('dist/mac-x64') || fs.existsSync('dist/mac-universal--x64') ) - execSync('cd ./node_modules/cider_utils; yarn run prebuild-downloads --platform=darwin --arch=arm64 --verbose; cd ../..',{stdio: 'inherit'}) - + // console.log('VMP signing complete') }