Fix not creating pypy_binary_direcotry

pull/864/head
pprokop 2016-06-28 12:11:42 +02:00
parent e5eeea3556
commit e31efd7ebf
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,9 @@
- name: add execute permission
raw: chmod a+x {{pypy_directory}}/pip
- name: create pypy_directory
raw: mkdir -p {{pypy_binary_directory}}
- name: move python to binary directory
raw: mv {{pypy_directory}}/pip {{pypy_binary_directory}}/pip

View File

@ -2,6 +2,9 @@
- name: download python
raw: cd $HOME && wget -O - {{coreos_pypy_url}} |tar -xjf -
- name: create pypy_directory
raw: mkdir -p {{pypy_binary_directory}}
- name: move pypy to pypy_install_directory
raw: mv $HOME/pypy-{{coreos_pypy_version}}-{{coreos_pypy_arch}} {{pypy_directory}}