Commit ca9d1e1a authored by Seblu's avatar Seblu
Browse files

Explicitly says we do nothing if version are equal

parent b041172e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ def command_update(args, vctrl):
    print("Upstream version: %s" % vctrl.cache[pkgname])
    # compare version
    if pkgver == upver:
        print("Version are the same.")
        print("Version are the same. Do nothing!")
        return
    # update version with upstream
    pkgbuild_set_version(args.path, upver)