@beplus/be 0.1.0 → 0.2.0
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/bin/be +3 -2
- package/package.json +1 -1
package/bin/be
CHANGED
|
@@ -64,7 +64,7 @@ function n_grep() {
|
|
|
64
64
|
# Setup and state
|
|
65
65
|
#
|
|
66
66
|
|
|
67
|
-
VERSION="v0.
|
|
67
|
+
VERSION="v0.2.0"
|
|
68
68
|
|
|
69
69
|
BE_PREFIX="${BE_PREFIX-/usr/local}"
|
|
70
70
|
BE_PREFIX=${BE_PREFIX%/}
|
|
@@ -1133,7 +1133,8 @@ function display_remote_versions() {
|
|
|
1133
1133
|
abort "invalid version '$1'"
|
|
1134
1134
|
fi
|
|
1135
1135
|
|
|
1136
|
-
local index_url="https://api.github.com/repos/beplus/cli/releases"
|
|
1136
|
+
# local index_url="https://api.github.com/repos/beplus/cli/releases"
|
|
1137
|
+
local index_url="https://beplus.s3.amazonaws.com/cli/releases.json"
|
|
1137
1138
|
|
|
1138
1139
|
for row in $(do_get_index "${index_url}" | jq -r '.[] | @base64'); do
|
|
1139
1140
|
_jq() {
|
package/package.json
CHANGED