@tessl/cli 0.63.0 → 0.63.1

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/README.md CHANGED
@@ -14,7 +14,7 @@ Visit the [Registry](https://tessl.io/registry) to see which open source librari
14
14
  1. Install Tessl:
15
15
 
16
16
  ```sh
17
- npm install -g @tessl/cli
17
+ curl -fsSL https://get.tessl.io | sh
18
18
  ```
19
19
 
20
20
  2. Now in your project directory run `tessl`
package/bin/tessl.js CHANGED
@@ -238,7 +238,7 @@ function printUnsupportedPlatformMessage() {
238
238
  async function prepareBinary() {
239
239
  const symlinkPath = getSymlinkPath();
240
240
  const symlinkTarget = await getExistingBinaryPath(symlinkPath);
241
- const installerVersion = "0.63.0";
241
+ const installerVersion = "0.63.1";
242
242
  const isTestOrDevBuild = installerVersion.includes("test") || installerVersion.includes("dev");
243
243
  let symlinkMismatch = false;
244
244
  if (isTestOrDevBuild && symlinkTarget) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tessl/cli",
3
- "version": "0.63.0",
3
+ "version": "0.63.1",
4
4
  "description": "Tessl CLI",
5
5
  "author": "Tessl",
6
6
  "license": "SEE LICENSE.md",