diff --git a/refine b/refine index 8a8481a2c..695293930 100755 --- a/refine +++ b/refine @@ -95,7 +95,7 @@ add_option() { load_configs() { TEMP_CONFIG=$(mktemp -t refine.XXXXXXX) - if [ "${TEMP_CONFIG}" == "" ] ; then + if [ "${TEMP_CONFIG}" = "" ] ; then error "Could not create temporary file to load configurations" fi cat $1 | egrep "^[A-Z]" | sed 's/^\(.*\)$/export \1/' > ${TEMP_CONFIG}