summaryrefslogtreecommitdiff
path: root/tools/eos-application-manifest/commands/version.js
blob: 160b82a26b256afe7684e6f4c15bbf60a1be1129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2013 Endless Mobile, Inc.

const System = imports.system;

function execute(args) {
    print("%s version %s".format(System.programInvocationName, programVersion));
}

function summary() {
    return "Version information";
}

function help() {
    print("Prints the version and exits.");
}