unoverse 0.1.72 → 0.1.73
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/operator/lib/deploy.sh +6 -3
- package/package.json +1 -1
package/operator/lib/deploy.sh
CHANGED
|
@@ -162,12 +162,15 @@ _ground_apply() {
|
|
|
162
162
|
|
|
163
163
|
# `read -p` does NOT interpret escapes, so ${DIM} printed as literal \033[2m. Colour
|
|
164
164
|
# the hint with echo -e first, then take a plain prompt.
|
|
165
|
+
# EXPLICIT YES, and it says so. Everywhere else in this CLI Enter means "go"; here it
|
|
166
|
+
# means "stop", because this is the one prompt that starts a monthly bill. Keeping the
|
|
167
|
+
# safety is right — leaving it as a bare [y/N] among Enter-means-go prompts is not.
|
|
165
168
|
local REPLY
|
|
166
|
-
echo -e " ${DIM}
|
|
167
|
-
read -r -p "
|
|
169
|
+
echo -e " ${DIM}d shows the full technical plan${NC}"
|
|
170
|
+
read -r -p " Type y to build this, or Enter to stop: " REPLY
|
|
168
171
|
if [[ "$REPLY" =~ ^[Dd]$ ]]; then
|
|
169
172
|
terraform -chdir="$dir" show "$planfile"
|
|
170
|
-
read -r -p "
|
|
173
|
+
read -r -p " Type y to build this, or Enter to stop: " REPLY
|
|
171
174
|
fi
|
|
172
175
|
if [[ ! "$REPLY" =~ ^[Yy]$ ]]; then
|
|
173
176
|
info "Nothing was created. Run ${BOLD}unoverse deploy${NC} when you are ready"
|
package/package.json
CHANGED