]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
fix typos
authorHolger Levsen <holger@layer-acht.org>
Sun, 18 Sep 2011 11:21:39 +0000 (13:21 +0200)
committerHolger Levsen <holger@layer-acht.org>
Sun, 18 Sep 2011 11:21:39 +0000 (13:21 +0200)
kernel_inpbuilder.py

index 4288e74018abeddaf655c9d8161a44e56467c856..b83827dd16dff6fdd8befef697ac6aa2d6b961e4 100644 (file)
@@ -246,13 +246,13 @@ def add_local_version_to_config(kernel_build_revision):
         )
     kernel_config = read_file(KERNEL_CONFIG_PATH)
     # don't put the branch names into the packages names
-    if GIT_BRANCH_NAME[7:] == 'master-'
+    if GIT_BRANCH_NAME[7:] == 'master-':
         flavor=GIT_BRANCH_NAME[:7]
-    elif GIT_BRANCH_NAME[8:] == 'develop-'
+    elif GIT_BRANCH_NAME[8:] == 'develop-':
         flavor=GIT_BRANCH_NAME[:8]
-    elif GIT_BRANCH_NAME[8:] == 'release-'
+    elif GIT_BRANCH_NAME[8:] == 'release-':
         flavor=GIT_BRANCH_NAME[:8]
-    elif GIT_BRANCH_NAME[7:] == 'hotfix-'
+    elif GIT_BRANCH_NAME[7:] == 'hotfix-':
         flavor=GIT_BRANCH_NAME[:7]
 
     localversion = '-profitbricks-%s' %(flavor)