Skip to content

Commit

Permalink
Small changes to build/install process..
Browse files Browse the repository at this point in the history
  • Loading branch information
Ev Kontsevoy committed Sep 19, 2017
1 parent c616923 commit 92bfdcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ clean:
export
release: clean full
mkdir teleport
cp -rf $(BUILDDIR) \
cp -rf $(BUILDDIR)/* \
examples \
build.assets/install\
README.md \
Expand Down
2 changes: 1 addition & 1 deletion build.assets/install
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BINDIR=/usr/local/bin
#
VARDIR=/var/lib/teleport

[ ! $(id -u) != "0" ] || (echo "ERROR: You must be root"; exit 1)
[ ! $(id -u) != "0" ] || { echo "ERROR: You must be root"; exit 1; }
cd $(dirname $0)
mkdir -p $VARDIR $BINDIR
cp -f teleport tctl tsh $BINDIR/

0 comments on commit 92bfdcd

Please sign in to comment.