@shenvy/cli 0.1.9 → 0.1.10

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/Formula/shenvy.rb CHANGED
@@ -4,21 +4,21 @@
4
4
  # This file was generated by GoReleaser. DO NOT EDIT.
5
5
  class Shenvy < Formula
6
6
  desc "Securely manage environment variables with E2EE."
7
- homepage "https://shenvy.dev"
8
- version "0.1.8"
7
+ homepage "https://shenvy.net"
8
+ version "0.1.10"
9
9
 
10
10
  on_macos do
11
11
  if Hardware::CPU.intel?
12
- url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_darwin_amd64.tar.gz"
13
- sha256 "a5c65110cd0a4acbb9b9038242f8e798c82b78d9155611a5964c9ec435dbbb8a"
12
+ url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_darwin_amd64.tar.gz"
13
+ sha256 "5d956c18f91e51fdae17a9f74bf00a803962da0edeedb0562956fe271d5ea29d"
14
14
 
15
15
  define_method(:install) do
16
16
  bin.install "shenvy"
17
17
  end
18
18
  end
19
19
  if Hardware::CPU.arm?
20
- url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_darwin_arm64.tar.gz"
21
- sha256 "0ce6d67606c51707cc2434b4730e42046b9a703a9f378e69593fe0e81ce4c008"
20
+ url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_darwin_arm64.tar.gz"
21
+ sha256 "ec879d7cc90c1549533c2a6d23ffe53723fa6320950a0a620ed990ae6accd268"
22
22
 
23
23
  define_method(:install) do
24
24
  bin.install "shenvy"
@@ -28,15 +28,15 @@ class Shenvy < Formula
28
28
 
29
29
  on_linux do
30
30
  if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
31
- url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_linux_amd64.tar.gz"
32
- sha256 "adace922b5f8b4218cfb1da4fd0c49ffa060e44f54497370992a934599490624"
31
+ url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_linux_amd64.tar.gz"
32
+ sha256 "3c36d7bdc6217554da21bf41082d4912fedca4eae03423e17e189dc665b497d7"
33
33
  define_method(:install) do
34
34
  bin.install "shenvy"
35
35
  end
36
36
  end
37
37
  if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
38
- url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_linux_arm64.tar.gz"
39
- sha256 "e9200f38e0d0e4e770a53d58403518efdaacd10a64f8190023e5216276b9b8a8"
38
+ url "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_linux_arm64.tar.gz"
39
+ sha256 "c7ef8ea771a06673efb8175f7109173f9b8a5fd72f0225acf96929b9a0900bc1"
40
40
  define_method(:install) do
41
41
  bin.install "shenvy"
42
42
  end
package/bin/shenvy CHANGED
@@ -2,13 +2,13 @@
2
2
  basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
3
 
4
4
  case `uname` in
5
- *CYGWIN*|*MINGW*|*MSYS*) exe_ext=.exe ;;
6
- *) exe_ext= ;;
5
+ *CYGWIN*|*MINGW*|*MSYS*) bin_name="shenvy.exe" ;;
6
+ *) bin_name="shenvy-bin" ;;
7
7
  esac
8
8
 
9
- if [ -x "$basedir/shenvy-bin" ]; then
10
- "$basedir/shenvy-bin" "$@"
9
+ if [ -x "$basedir/$bin_name" ]; then
10
+ "$basedir/$bin_name" "$@"
11
11
  else
12
12
  # Fallback if binary is not yet downloaded
13
- node "$basedir/install.js" && "$basedir/shenvy-bin" "$@"
13
+ node "$basedir/install.js" && "$basedir/$bin_name" "$@"
14
14
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shenvy/cli",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Securely manage environment variables with E2EE (Go implementation wrapper)",
5
5
  "main": "bin/install.js",
6
6
  "bin": {
package/scoop/shenvy.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
- "version": "0.1.8",
2
+ "version": "0.1.10",
3
3
  "architecture": {
4
4
  "64bit": {
5
- "url": "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_windows_amd64.zip",
5
+ "url": "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_windows_amd64.zip",
6
6
  "bin": [
7
7
  "shenvy.exe"
8
8
  ],
9
- "hash": "7b2ff88ba99e087343a9fc171057a4b11cbbb7bddfa9fdaf62558c1948957db3"
9
+ "hash": "812fd386d8a32a7ee674db31b5d2ebf79082591728f9fd37322ecc7fc3ea39ae"
10
10
  },
11
11
  "arm64": {
12
- "url": "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.8/shenvy_windows_arm64.zip",
12
+ "url": "https://github.com/Shenvy/shenvy-cli-dist/releases/download/v0.1.10/shenvy_windows_arm64.zip",
13
13
  "bin": [
14
14
  "shenvy.exe"
15
15
  ],
16
- "hash": "9f829c5c8d8b7f1e42d1c7a71d21f465ab14da954ad4fa19e44ac0ebfd873944"
16
+ "hash": "47239c53f91fc16dc017897ecce22ee0374d0897de9fbd39d95471b082983e1b"
17
17
  }
18
18
  },
19
- "homepage": "https://shenvy.dev",
19
+ "homepage": "https://shenvy.net",
20
20
  "license": "MIT",
21
21
  "description": "Securely manage environment variables with E2EE."
22
22
  }