mirror of https://github.com/jenv/jenv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
350 B
18 lines
350 B
#!/usr/bin/env bash |
|
# Usage: jenv options-file-write <file> <options> |
|
|
|
set -e |
|
[ -n "$JENV_DEBUG" ] && set -x |
|
|
|
JENV_OPTIONS_FILE="$1" |
|
JENV_OPTIONS="$2" |
|
|
|
if [ -z "$JENV_OPTIONS" ] || [ -z "$JENV_OPTIONS_FILE" ]; then |
|
jenv-help --usage options-file-write >&2 |
|
exit 1 |
|
fi |
|
|
|
|
|
|
|
# Write the options out to disk. |
|
echo "$JENV_OPTIONS" > "$JENV_OPTIONS_FILE"
|
|
|