Skip to content

Commit

Permalink
CONFIG_START() fix =
Browse files Browse the repository at this point in the history
  • Loading branch information
mezantrop committed Apr 4, 2024
1 parent 987bb87 commit f5e4f33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minmiconf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# ---------------------------------------------------------------------------- #

# -- Script variables -------------------------------------------------------- #
version="1.0.0"
version="1.0.0.1"
_DEBUG="n"
_INCLUDE_PATH="" # Cache detected INCLUDE dirs
_LIB_PATH="" # Cache detected LIB directories
Expand Down Expand Up @@ -571,7 +571,7 @@ CONFIG_START() {

_lock=${2-".configured"}

[ "$3" == "f" -o "$3" == "F" ] && rm -r "$_lock"
[ "$3" = "f" -o "$3" = "F" ] && rm -r "$_lock"
eval $1='$_lock'

[ -f "$_lock" ] && {
Expand Down

0 comments on commit f5e4f33

Please sign in to comment.