Skip to content

Commit

Permalink
fix(build): fixed build error due to no assets folder
Browse files Browse the repository at this point in the history
  • Loading branch information
lt-mayonesa committed Feb 1, 2020
1 parent db972da commit 65dedd1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ cat src/browser/manifest.json | \
# replace all instances of src/ with empty string
echo "Generated ${extension}manifest.json ✓"

title "Step 7: Copy assets"
cp -v -R src/browser/assets "${extension}/assets"


# COMPILE NATIVE
title "COMPILE NATIVE"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-mpris2",
"version": "0.5.0",
"version": "0.5.1",
"description": "Implements the MPRIS2 interface for Chrome and Firefox",
"main": "src/browser/init.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions src/browser/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Browser MPRIS2 debug",
"description": "Implements the MPRIS2 interface for Chrome and Firefox",
"version": "0.5.0",
"version": "0.5.1",
"icons": {
"16": "assets/browser-mpris2-16.png",
"48": "assets/browser-mpris2-48.png",
Expand All @@ -11,7 +11,7 @@
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
"strict_min_version": "57.0"
}
},
"browser_action": {
Expand Down

0 comments on commit 65dedd1

Please sign in to comment.