@leverege/build-tools 2.53.2-beta.2 → 2.53.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.53.2-beta.2",
3
+ "version": "2.53.4",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -82,4 +82,4 @@
82
82
  "@leverege/eslint-config-leverege": "^4.2.0",
83
83
  "npm": "^10.8.3"
84
84
  }
85
- }
85
+ }
@@ -30,6 +30,8 @@ echo "Updated ~/.pypirc"
30
30
  # Escape for sed
31
31
  UV_EXTRA_INDEX_URL="https://oauth2accesstoken:${TOKEN}@us-python.pkg.dev/leverege-registry/leverege-python-packages/simple"
32
32
 
33
+ export UV_EXTRA_INDEX_URL="https://oauth2accesstoken:${TOKEN}@us-python.pkg.dev/leverege-registry/leverege-python-packages/simple"
34
+
33
35
  SHELLS=("bash" "dash" "zsh" "fish")
34
36
 
35
37
  for shell in "${SHELLS[@]}"; do
@@ -70,25 +72,6 @@ for shell in "${SHELLS[@]}"; do
70
72
  done
71
73
 
72
74
  function get_parent_shell() {
73
- local ppid=$(ps -p $$ -o ppid= | tr -d ' ')
74
- local shell=$(ps -p $ppid -o comm= | tr -d ' ')
75
-
76
- while [ "$ppid" != "1" ]; do
77
- ppid=$(ps -p $ppid -o ppid= | tr -d ' ')
78
- shell=$(ps -p $ppid -o comm= | tr -d ' ')
79
-
80
- if [[ "$shell" =~ bash|dash|zsh|fish ]]; then
81
- echo "$shell"
82
- return
83
- fi
84
- done
85
-
86
-
87
- shell=$(ps -p $$ -o 'comm=')
88
- echo "foo $shell"
89
- return
90
-
91
-
92
75
  echo ""
93
76
  }
94
77