Skip to content

Commit 65a8bda

Browse files
fix: adjust quick start examples (#126)
1 parent c5248d3 commit 65a8bda

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ print_usage() {
255255
echo -e "${BLUE}Quick Start:${NC}"
256256
if command -v "boundary-run" &> /dev/null; then
257257
echo " boundary-run --help"
258-
echo " boundary-run --allow 'github.com' -- curl https://github.com"
259-
echo " boundary-run --allow '*.npmjs.org' -- npm install"
258+
echo " boundary-run --allow \"domain=github.com\" -- curl https://github.com"
259+
echo " boundary-run --allow \"domain=*.npmjs.org\" -- npm install"
260260
echo " boundary-run -- bash"
261261
else
262262
echo " boundary --help"
263-
echo " boundary --allow 'github.com' -- curl https://github.com"
264-
echo " boundary --allow '*.npmjs.org' -- npm install"
263+
echo " boundary --allow \"domain=github.com\" -- curl https://github.com"
264+
echo " boundary --allow \"domain=*.npmjs.org\" -- npm install"
265265
fi
266266
echo
267267
echo -e "${BLUE}Documentation:${NC}"

0 commit comments

Comments
 (0)