Skip to content

Commit

Permalink
Update millw (#644)
Browse files Browse the repository at this point in the history
shell scripts should use `#` rather than `\\` for comments
  • Loading branch information
nrktkt authored and lefou committed Jul 2, 2019
1 parent e0a3bbe commit ed0fc03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions millw
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ fi
MILL_DOWNLOAD_PATH="${HOME}/.mill/download"

if [ "x${MILL_VERSION}" = "x" ] ; then
// TODO: try to load latest version from release page
# TODO: try to load latest version from release page
echo -n "Retrieving latest mill version..."
if [ -e "${MILL_DOWNLOAD_PATH}/.latest" ] ; then

MILL_VERSION="$(head -n 1 \"${MILL_DOWNLOAD_PATH}/.latest\" 2> /dev/null)"
fi

// Last resort
# Last resort
if [ "x${MILL_VERSION}" = "x" ] ; then
MILL_VERSION="${DEFAULT_MILL_VERSION}"
fi
Expand Down

0 comments on commit ed0fc03

Please sign in to comment.