Skip to content

Commit

Permalink
Fix inter-active script menu: use -s replace -l
Browse files Browse the repository at this point in the history
-s|--source-vars the correct option
-l|--load the old option

Signed-off-by: Richard T Bonhomme <tincantech@protonmail.com>
  • Loading branch information
TinCanTech committed May 13, 2022
1 parent 35a63c8 commit 81b1c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easytls
Original file line number Diff line number Diff line change
Expand Up @@ -7545,7 +7545,7 @@ interactive_scripts ()
"$EASYTLS_PRINTF" ' %s' "'"
[ -n "${EASYTLS_FOR_WINDOWS}" ] && "$EASYTLS_PRINTF" "%s " "$EASYTLS_SH_EXE"
"$EASYTLS_PRINTF" '%s' "$EASYTLS_VERIFY_V2_SH"
"$EASYTLS_PRINTF" ' %s' "-l=${EASYTLS_VERIFY_V2_VARS}"
"$EASYTLS_PRINTF" ' %s' "-s=${EASYTLS_VERIFY_V2_VARS}"
[ "$opt_no_ca" ] && "$EASYTLS_PRINTF" ' %s' "${opt_no_ca}"
"$EASYTLS_PRINTF" ' %s' "-c=${opt_ca_path}"
[ "$opt_customg" ] && "$EASYTLS_PRINTF" ' %s' "${opt_customg}"
Expand All @@ -7566,7 +7566,7 @@ interactive_scripts ()
[ -n "${EASYTLS_FOR_WINDOWS}" ] && \
"$EASYTLS_PRINTF" "%s " "$EASYTLS_SH_EXE"
"$EASYTLS_PRINTF" '%s' "${EASYTLS_CLICON_SH} -v"
"$EASYTLS_PRINTF" ' %s' "-l=${EASYTLS_CLICON_VARS}"
"$EASYTLS_PRINTF" ' %s' "-s=${EASYTLS_CLICON_VARS}"
[ "$opt_hw_required" ] && \
"$EASYTLS_PRINTF" ' %s' "$opt_hw_required"
[ "$opt_tmp_dir" ] && "$EASYTLS_PRINTF" ' %s' "${opt_tmp_dir}"
Expand All @@ -7578,7 +7578,7 @@ interactive_scripts ()
[ -n "${EASYTLS_FOR_WINDOWS}" ] && \
"$EASYTLS_PRINTF" "%s " "$EASYTLS_SH_EXE"
"$EASYTLS_PRINTF" '%s' "${EASYTLS_CLIDIS_SH} -v"
"$EASYTLS_PRINTF" ' %s' "-l=${EASYTLS_CLIDIS_VARS}"
"$EASYTLS_PRINTF" ' %s' "-s=${EASYTLS_CLIDIS_VARS}"
"$EASYTLS_PRINTF" '%s\n' "'"
}

Expand Down

1 comment on commit 81b1c29

@TinCanTech
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.