diff options
Diffstat (limited to 'decorators')
-rw-r--r-- | decorators/bld.bat | 3 | ||||
-rw-r--r-- | decorators/build.sh | 2 | ||||
-rw-r--r-- | decorators/meta.yaml | 6 |
3 files changed, 5 insertions, 6 deletions
diff --git a/decorators/bld.bat b/decorators/bld.bat index b290566..760380e 100644 --- a/decorators/bld.bat +++ b/decorators/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/decorators/build.sh b/decorators/build.sh index 4b71885..6bd6081 100644 --- a/decorators/build.sh +++ b/decorators/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/decorators/meta.yaml b/decorators/meta.yaml index 11e7987..ad7fdda 100644 --- a/decorators/meta.yaml +++ b/decorators/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'decorators' %} {% set version = '0.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/micheles/decorator @@ -17,10 +17,10 @@ package: requirements: build: - setuptools - - python x.x + - python {{ python }} run: - - python x.x + - python source: fn: {{ name }}-{{ version }}.tar.gz |