Skip to content

Commit b414ec3

Browse files
authoredApr 23, 2019
Merge pull request #479 from mfdj/master
Also install etc directory
2 parents 98be7fe + 95ced4c commit b414ec3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎install.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ if [ -z "${PREFIX}" ]; then
1212
fi
1313

1414
BIN_PATH="${PREFIX}/bin"
15+
ETC_PATH="${PREFIX}/etc"
1516
SHARE_PATH="${PREFIX}/share/node-build"
1617

17-
mkdir -p "$BIN_PATH" "$SHARE_PATH"
18+
mkdir -p "$BIN_PATH" "$ETC_PATH" "$SHARE_PATH"
1819

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

0 commit comments

Comments
 (0)
Please sign in to comment.