diff options
| author | rr- <rr-@sakuya.pl> | 2016-08-27 20:08:58 +0200 |
|---|---|---|
| committer | rr- <rr-@sakuya.pl> | 2016-08-27 22:19:01 +0200 |
| commit | 02d631a65d1680d6f49c69be8e667485cbe298b4 (patch) | |
| tree | 91f1b969d883f60eb637b4cac98e8fbe9ea256f8 /client/build.js | |
| parent | f63d024777ca832826e804a9054ecadbab48f9e9 (diff) | |
client/css: improve appearance on small screens
Diffstat (limited to 'client/build.js')
| -rw-r--r-- | client/build.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/build.js b/client/build.js index 0227309..7465505 100644 --- a/client/build.js +++ b/client/build.js @@ -29,7 +29,9 @@ function writeFile(path, content) { } function getVersion() { - return execSync('git describe --always --dirty --long --tags').toString(); + return execSync('git describe --always --dirty --long --tags') + .toString() + .trim(); } function getConfig() { |