homebridge-melcloud-control 4.5.6-beta.2 → 4.5.6-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/functions.js +2 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.5.6-beta.
|
|
4
|
+
"version": "4.5.6-beta.3",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
package/src/functions.js
CHANGED
|
@@ -150,11 +150,10 @@ class Functions extends EventEmitter {
|
|
|
150
150
|
apt update -y &&
|
|
151
151
|
apt install -y wget gnupg ca-certificates &&
|
|
152
152
|
mkdir -p /etc/apt/keyrings &&
|
|
153
|
-
wget -qO /etc/apt/keyrings/google.gpg
|
|
154
|
-
sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.gpg] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' &&
|
|
153
|
+
wget -qO- https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/keyrings/google-chrome.gpg && sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list' &&
|
|
155
154
|
apt update -y &&
|
|
156
155
|
apt install -y google-chrome-stable
|
|
157
|
-
|
|
156
|
+
`);
|
|
158
157
|
} catch (error) {
|
|
159
158
|
if (this.logError) this.emit('error', `Chrome install error: ${error}`);
|
|
160
159
|
return { path: null, arch, system: 'Linux Docker' };
|