diff options
Diffstat (limited to 'python-daemon')
-rw-r--r-- | python-daemon/bld.bat | 3 | ||||
-rw-r--r-- | python-daemon/build.sh | 2 | ||||
-rw-r--r-- | python-daemon/meta.yaml | 6 |
3 files changed, 5 insertions, 6 deletions
diff --git a/python-daemon/bld.bat b/python-daemon/bld.bat index b290566..760380e 100644 --- a/python-daemon/bld.bat +++ b/python-daemon/bld.bat @@ -1,3 +1,2 @@ -python setup.py install -if errorlevel 1 exit 1
\ No newline at end of file +%PYTHON% setup.py install diff --git a/python-daemon/build.sh b/python-daemon/build.sh index 4b71885..6bd6081 100644 --- a/python-daemon/build.sh +++ b/python-daemon/build.sh @@ -1,2 +1,2 @@ -python setup.py install || exit 1
\ No newline at end of file +$PYTHON setup.py install diff --git a/python-daemon/meta.yaml b/python-daemon/meta.yaml index 5605faa..0af3c79 100644 --- a/python-daemon/meta.yaml +++ b/python-daemon/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'python-daemon' %} {% set version = '2.0.5' %} -{% set number = '0' %} +{% set number = '1' %} about: home: http://bitbucket.org/jhunkeler/python-daemon @@ -18,11 +18,11 @@ requirements: build: - docutils - lockfile - - python x.x + - python {{ python }} run: - lockfile - - python x.x + - python source: fn: {{ name }}-{{ version }}.tar.gz |