vscode-extensions.hashicorp.terraform: 2.10.0 -> 2.10.1
This commit is contained in:
parent
5ef56ad9f1
commit
3f16286601
|
@ -3,13 +3,13 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
|
||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "terraform";
|
name = "terraform";
|
||||||
publisher = "hashicorp";
|
publisher = "hashicorp";
|
||||||
version = "2.10.0";
|
version = "2.10.1";
|
||||||
};
|
};
|
||||||
|
|
||||||
vsix = fetchurl {
|
vsix = fetchurl {
|
||||||
name = "${mktplcRef.publisher}-${mktplcRef.name}.zip";
|
name = "${mktplcRef.publisher}-${mktplcRef.name}.zip";
|
||||||
url = "https://github.com/hashicorp/vscode-terraform/releases/download/v${mktplcRef.version}/${mktplcRef.name}-${mktplcRef.version}.vsix";
|
url = "https://github.com/hashicorp/vscode-terraform/releases/download/v${mktplcRef.version}/${mktplcRef.name}-${mktplcRef.version}.vsix";
|
||||||
sha256 = "1xhypy4vvrzxj3qwkzpfx8b48hddf72mxmh0hgz7iry6bch6sh5f";
|
sha256 = "1galibrk4fx4qwa6q17mmwlikx78nmhgv1h98haiyak666cinzcq";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./fix-terraform-ls.patch ];
|
patches = [ ./fix-terraform-ls.patch ];
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
diff --git a/out/extension.js b/out/extension.js
|
diff --git a/out/extension.js b/out/extension.js
|
||||||
index e44cef2..fba0899 100644
|
index e815393..aeade0e 100644
|
||||||
--- a/out/extension.js
|
--- a/out/extension.js
|
||||||
+++ b/out/extension.js
|
+++ b/out/extension.js
|
||||||
@@ -141,24 +141,6 @@ function updateLanguageServer() {
|
@@ -141,25 +141,6 @@ function updateLanguageServer() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const delay = 1000 * 60 * 24;
|
const delay = 1000 * 60 * 24;
|
||||||
setTimeout(updateLanguageServer, delay); // check for new updates every 24hrs
|
setTimeout(updateLanguageServer, delay); // check for new updates every 24hrs
|
||||||
|
@ -16,6 +16,7 @@ index e44cef2..fba0899 100644
|
||||||
- yield installer.install();
|
- yield installer.install();
|
||||||
- }
|
- }
|
||||||
- catch (err) {
|
- catch (err) {
|
||||||
|
- console.log(err); // for test failure reporting
|
||||||
- reporter.sendTelemetryException(err);
|
- reporter.sendTelemetryException(err);
|
||||||
- throw err;
|
- throw err;
|
||||||
- }
|
- }
|
||||||
|
@ -27,7 +28,7 @@ index e44cef2..fba0899 100644
|
||||||
return startClients(); // on repeat runs with no install, this will be a no-op
|
return startClients(); // on repeat runs with no install, this will be a no-op
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -256,7 +238,7 @@ function pathToBinary() {
|
@@ -257,7 +238,7 @@ function pathToBinary() {
|
||||||
reporter.sendTelemetryEvent('usePathToBinary');
|
reporter.sendTelemetryEvent('usePathToBinary');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue