Skip to content

Commit

Permalink
also install etc directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mfdj committed Apr 1, 2019
1 parent 27a70a7 commit 95ced4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ if [ -z "${PREFIX}" ]; then
fi

BIN_PATH="${PREFIX}/bin"
ETC_PATH="${PREFIX}/etc"
SHARE_PATH="${PREFIX}/share/node-build"

mkdir -p "$BIN_PATH" "$SHARE_PATH"
mkdir -p "$BIN_PATH" "$ETC_PATH" "$SHARE_PATH"

install -p bin/* "$BIN_PATH"
install -d etc/* "$ETC_PATH"
install -p -m 0644 share/node-build/* "$SHARE_PATH"

0 comments on commit 95ced4c

Please sign in to comment.