Skip to content

Commit

Permalink
Fix submodules not being fetched upon build.
Browse files Browse the repository at this point in the history
  • Loading branch information
aspickard committed Jun 30, 2021
1 parent 07e49c4 commit 3161647
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "dasher-electron",
"version": "1.1.1",
"version": "1.1.2",
"description": "Electron implementation of Dasher.",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder",
"release": "electron-builder --mac --windows --linux --publish always"
"build": "git submodule update --init && electron-builder",
"release": "git submodule update --init && electron-builder --mac --windows --linux --publish always"
},
"keywords": [],
"author": "Technoke LLC",
Expand Down

0 comments on commit 3161647

Please sign in to comment.