]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Use TASK_VERSION as a prefix for the apt packge version
authorRob Golding <rob@robgolding.com>
Tue, 18 Feb 2014 21:47:40 +0000 (21:47 +0000)
committerRob Golding <rob@robgolding.com>
Tue, 18 Feb 2014 21:47:40 +0000 (21:47 +0000)
.travis.yml
builddep.sh

index ba89600374166111768edfa10b20a6e0f19ac21f..89c3652f6510952379d3b532c29ad8b2b9b2fa16 100644 (file)
@@ -1,7 +1,7 @@
 language: python
 env:
   - BUILD_FROM_SOURCE=true TASK_VERSION=2.3.0
-  - TASK_VERSION=2.2.0-3
+  - TASK_VERSION=2.2.0
 python:
   - "2.6"
   - "2.7"
index 26e3a3d412d63edc4a313281e98291ba11c16b32..c4c41fd7380b1dece63fb75308bc65de3e1ee7fb 100755 (executable)
@@ -9,5 +9,5 @@ if [[ $BUILD_FROM_SOURCE ]]; then
     make
     sudo make install
 else
-    sudo apt-get install task=$TASK_VERSION
+    sudo apt-get install task=$TASK_VERSION*
 fi