Skip to content

Commit

Permalink
[Distribution] Enable User Profile Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NAmorim committed Nov 23, 2021
1 parent 6691cfb commit 1613e78
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Platform/Client/httpInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -1353,8 +1353,14 @@ exports.newHttpInterface = function newHttpInterface() {
const repo = 'Superalgos'
const owner = 'Superalgos'
const head = username + ':' + contributionsBranch
const base = currentBranch
const title = 'Contribution: ' + mess
//const base = currentBranch
let base = undefined
if(process.env.SA_MODE === 'gitDisable') {
base = 'develop'
} else {
base = currentBranch
}
const title = 'Governance: ' + mess
const path = 'Projects/Governance/Plugins/User-Profiles/' + username + '.json';

const sha = await getSHA(path);
Expand Down
1 change: 1 addition & 0 deletions build/electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"appId": "org.superalgos.platform",
"productName": "Superalgos",
"asar": true,
"asarUnpack": "**/Projects/Governance/Plugins/User-Profiles/*",
"generateUpdatesFilesForAllChannels": true,
"files": [
"**/*",
Expand Down

0 comments on commit 1613e78

Please sign in to comment.