Skip to content

Commit 6826f51

Browse files
committed
Replace arguments in UPPER_CASE with <lower_case>
1 parent e232b97 commit 6826f51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

get-elixir.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ help() {
5151
5252
Version Number:
5353
'latest' is the default option, and it's not required to specify it
54-
(unless a DEST_DIR want to be used)
54+
(unless a <dest_dir> wants to be used)
5555
Examples: 'latest', '1.0.5', '1.0.0-rc2'
5656
5757
Destination Dir:
@@ -187,12 +187,12 @@ do_main() {
187187

188188
# Check for unrecognized options
189189
if [ "${COMMAND}" != "unpack" ] && [ "${COMMAND}" != "download" ]; then
190-
echo "* [ERROR] Unrecognized ACTION \"${COMMAND}\". Try 'unpack' or 'download'." >&2
190+
echo "* [ERROR] Unrecognized <action> \"${COMMAND}\". Try 'unpack' or 'download'." >&2
191191
exit 1
192192
fi
193193

194194
if [ "${PACKAGE_TYPE}" != "source" ] && [ "${PACKAGE_TYPE}" != "precompiled" ]; then
195-
echo "* [ERROR] Unrecognized PACKAGE_TYPE \"${PACKAGE_TYPE}\". Try 'source' or 'precompiled'." >&2
195+
echo "* [ERROR] Unrecognized <package_type> \"${PACKAGE_TYPE}\". Try 'source' or 'precompiled'." >&2
196196
exit 1
197197
fi
198198

0 commit comments

Comments
 (0)