diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-06-29 23:23:41 (GMT) |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-06-29 23:23:41 (GMT) |
commit | 648a4e6bec6656a6b735eb73da759a6338d7a9e8 (patch) | |
tree | 253ba8a22d61d49fb2311a1c746c3fcabf534181 /tools/update-gmsl | |
parent | 85279ffca60adf316b802cc65e0cbfb8d59f31b7 (diff) | |
download | mxe-648a4e6bec6656a6b735eb73da759a6338d7a9e8.zip mxe-648a4e6bec6656a6b735eb73da759a6338d7a9e8.tar.gz mxe-648a4e6bec6656a6b735eb73da759a6338d7a9e8.tar.bz2 |
update-gmsl: print notice when no new version is available
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'tools/update-gmsl')
-rwxr-xr-x | tools/update-gmsl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/update-gmsl b/tools/update-gmsl index c633324..bf88b50 100755 --- a/tools/update-gmsl +++ b/tools/update-gmsl @@ -42,4 +42,6 @@ if [ $current_version != $latest_version ]; then cp -a gmsl-${latest_version}/__gmsl ext/ cp -a gmsl-${latest_version}/index.html doc/gmsl.html clean +else + echo "No new version available: $current_version" fi |