summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel Fischer <nfischer921@gmail.com>2019-07-02 05:04:08 -0700
committerTobias Roeser <le.petit.fou@web.de>2019-07-02 14:04:08 +0200
commited0fc03fd5525f112437e4178b8f5a4c438d999e (patch)
tree4ef6ac0f797a4137421f28e19aa9c8bea7486101
parente0a3bbe716b67624eaf3c327ea1e433c6c481213 (diff)
downloadmill-ed0fc03fd5525f112437e4178b8f5a4c438d999e.tar.gz
mill-ed0fc03fd5525f112437e4178b8f5a4c438d999e.tar.bz2
mill-ed0fc03fd5525f112437e4178b8f5a4c438d999e.zip
Update millw (#644)
shell scripts should use `#` rather than `\\` for comments
-rwxr-xr-xmillw4
1 files changed, 2 insertions, 2 deletions
diff --git a/millw b/millw
index 52752912..7650fad9 100755
--- a/millw
+++ b/millw
@@ -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