Skip to content

Commit

Permalink
Passing prefix to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mveritym committed Feb 9, 2018
1 parent 008f0a6 commit c192eac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions makefile
@@ -1,7 +1,7 @@
install:
rm -rf /usr/local/Cellar/kubedecode
mkdir -p /usr/local/Cellar/kubedecode/1.0
rm -rf $(PREFIX)
mkdir -p $(PREFIX)

cp bin/kubedecode /usr/local/Cellar/kubedecode/1.0/
chmod 0555 /usr/local/Cellar/kubedecode/1.0/kubedecode
ls /usr/local/Cellar/kubedecode/1.0
cp bin/kubedecode $(PREFIX)
chmod 0555 $(PREFIX)/kubedecode
ls $(PREFIX)

0 comments on commit c192eac

Please sign in to comment.