Skip to content

Commit

Permalink
fix(snap): snap template 1 broken
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Apr 19, 2018
1 parent f3086b6 commit 55b96cd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app-builder-bin/linux/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "app-builder-bin-linux",
"description": "app-builder Linux binary",
"version": "1.8.5",
"version": "1.8.6",
"license": "MIT",
"repository": "develar/app-builder-bin",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion app-builder-bin/mac/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "app-builder-bin-mac",
"description": "app-builder macOS binary",
"version": "1.8.5",
"version": "1.8.6",
"license": "MIT",
"repository": "develar/app-builder-bin",
"files": [
Expand Down
8 changes: 4 additions & 4 deletions app-builder-bin/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "app-builder-bin",
"description": "app-builder precompiled binaries",
"version": "1.8.5",
"version": "1.8.6",
"files": [
"*.js",
"index.d.ts"
],
"license": "MIT",
"repository": "develar/app-builder",
"optionalDependencies": {
"app-builder-bin-mac": "1.8.5",
"app-builder-bin-win": "1.8.5",
"app-builder-bin-linux": "1.8.5"
"app-builder-bin-mac": "1.8.6",
"app-builder-bin-win": "1.8.6",
"app-builder-bin-linux": "1.8.6"
},
"keywords": [
"snap",
Expand Down
2 changes: 1 addition & 1 deletion app-builder-bin/win/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "app-builder-bin-win",
"description": "app-builder Windows binary",
"version": "1.8.5",
"version": "1.8.6",
"license": "MIT",
"repository": "develar/app-builder-bin",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
)

var (
app = kingpin.New("app-builder", "app-builder").Version("1.8.5")
app = kingpin.New("app-builder", "app-builder").Version("1.8.6")

buildBlockMap = app.Command("blockmap", "Generates file block map for differential update using content defined chunking (that is robust to insertions, deletions, and changes to input file)")
buildBlockMapInFile = buildBlockMap.Flag("input", "input file").Short('i').Required().String()
Expand Down
4 changes: 2 additions & 2 deletions pkg/snap/snap.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ type TemplateInfo struct {

//noinspection SpellCheckingInspection
var electronTemplate = TemplateInfo {
Url: "https://github.com/electron-userland/electron-builder-binaries/releases/download/snap-template-1.2/electron-template-1.2.snap",
Sha512: "DNLMH9Wjdih1XLgccYGtTmMvoNBrBJFaQuCFvj9T+50yL10LQqpzBWbshaw7rFo1RARMmMHXigBuVQdUUG5REA==",
Url: "https://github.com/electron-userland/electron-builder-binaries/releases/download/snap-template-1.2.1/electron-template-1.2.1.snap",
Sha512: "mQZLAKoh72LLofgTfBGHsZNu+EcsL2sqAUoPhQGMn9V5I9V4UvYJWq+LD5zWzTU5OcyK8aGnJ2UlX1/nPmigmw==",
}

//noinspection SpellCheckingInspection
Expand Down

0 comments on commit 55b96cd

Please sign in to comment.