chiark / gitweb /
Always end config list items with a comma
authorDaniel Martí <mvdan@mvdan.cc>
Thu, 13 Aug 2015 17:45:43 +0000 (10:45 -0700)
committerDaniel Martí <mvdan@mvdan.cc>
Thu, 13 Aug 2015 18:02:09 +0000 (11:02 -0700)
buildserver/config.buildserver.py
examples/config.py

index 98aa69c15ff55a083a75b9bf96a5525e827d49ea..2d5d575eaf658b3591bf3b89be4ce7240a581284 100644 (file)
@@ -1,7 +1,7 @@
 sdk_path = "/home/vagrant/android-sdk"
 ndk_paths = {
     'r9b': "/home/vagrant/android-ndk/r9b",
-    'r10e': "/home/vagrant/android-ndk/r10e"
+    'r10e': "/home/vagrant/android-ndk/r10e",
 }
 build_tools = "22.0.1"
 ant = "ant"
index 4fcbc4c2f1f7f5fed79fd2327229dccb317f2319..eed07d3c2251198fd3911deec6c1fe5bf6cf89a1 100644 (file)
@@ -12,7 +12,7 @@
 # not installed.
 # ndk_paths = {
 #    'r9b': "/opt/android-ndk-r9b",
-#    'r10e': "/opt/android-ndk"
+#    'r10e': "/opt/android-ndk",
 # }
 
 # Build tools version to be used
@@ -211,5 +211,5 @@ build_server_always = False
 # Only the fields listed here are supported, defaults shown
 char_limits = {
     'Summary': 50,
-    'Description': 1500
+    'Description': 1500,
 }