tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
vscode-extensions.hashicorp.terraform: 2.15.0 -> 2.16.0
Ryan Horiguchi
4 years ago
ced47fa5
7c204b7c
+4
-4
2 changed files
expand all
collapse all
unified
split
pkgs
misc
vscode-extensions
terraform
default.nix
fix-terraform-ls.patch
+2
-2
pkgs/misc/vscode-extensions/terraform/default.nix
···
3
mktplcRef = {
4
name = "terraform";
5
publisher = "hashicorp";
6
-
version = "2.15.0";
7
-
sha256 = "0bqf9ry0idqw61714dc6y1rh5js35mi14q19yqhiwayyfakwraq9";
8
};
9
10
patches = [ ./fix-terraform-ls.patch ];
···
3
mktplcRef = {
4
name = "terraform";
5
publisher = "hashicorp";
6
+
version = "2.16.0";
7
+
sha256 = "0ya0xmmn4rmbvh8mxz466msbb3y2xqi4bg9dgymy2wq8cwzbn81b";
8
};
9
10
patches = [ ./fix-terraform-ls.patch ];
+2
-2
pkgs/misc/vscode-extensions/terraform/fix-terraform-ls.patch
···
1
diff --git a/out/serverPath.js b/out/serverPath.js
2
-
index ffb1b80..990ca2b 100644
3
--- a/out/serverPath.js
4
+++ b/out/serverPath.js
5
@@ -8,7 +8,13 @@ exports.CUSTOM_BIN_PATH_OPTION_NAME = 'languageServer.pathToBinary';
···
16
+ }
17
}
18
installPath() {
19
-
return this.context.asAbsolutePath(INSTALL_FOLDER_NAME);
···
1
diff --git a/out/serverPath.js b/out/serverPath.js
2
+
index d25f5d4..289f0dd 100644
3
--- a/out/serverPath.js
4
+++ b/out/serverPath.js
5
@@ -8,7 +8,13 @@ exports.CUSTOM_BIN_PATH_OPTION_NAME = 'languageServer.pathToBinary';
···
16
+ }
17
}
18
installPath() {
19
+
return path.join(this.context.globalStorageUri.fsPath, INSTALL_FOLDER_NAME);