version.sh: fix version when built from tarball
authorSergei Trofimovich <slyfox@gentoo.org>
Thu, 11 Oct 2012 08:43:48 +0000 (11:43 +0300)
committerDavid Sterba <dsterba@suse.cz>
Thu, 17 Jan 2013 17:13:03 +0000 (18:13 +0100)
[from 0.20-rc1 tarball]

Before the patch:
  $ ./btrfs --version
  Btrfs Btrfs v0.19

After the patch:
  $ ./btrfs --version
  Btrfs v0.20-rc1

Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
version.sh

index af3e441..b81040e 100644 (file)
@@ -6,7 +6,7 @@
 # Copyright 2008, Oracle
 # Released under the GNU GPLv2
  
-v="Btrfs v0.19"
+v="v0.20-rc1"
 
 which git &> /dev/null
 if [ $? == 0 -a -d .git ]; then