Skip to content

Commit

Permalink
Merge pull request kubernetes-retired#121 from pmorie/local-build-src…
Browse files Browse the repository at this point in the history
…-dir

WIP: fix binary src directory for local build install
  • Loading branch information
eparis committed Sep 25, 2015
2 parents 1d743b5 + 9c27c39 commit 8471a10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/master/tasks/localBuildInstall.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: Copy master binaries
copy:
src: ../../_output/local/go/bin/{{ item }}
src: ../../kubernetes/_output/local/go/bin/{{ item }}
dest: /usr/bin/
mode: 755
with_items:
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/node/tasks/localBuildInstall.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: Copy node binaries
copy:
src: ../../_output/local/go/bin/{{ item }}
src: ../../kubernetes/_output/local/go/bin/{{ item }}
dest: /usr/bin/
mode: 755
with_items:
Expand Down

0 comments on commit 8471a10

Please sign in to comment.