We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a70a7 commit 95ced4cCopy full SHA for 95ced4c
install.sh
@@ -12,9 +12,11 @@ if [ -z "${PREFIX}" ]; then
12
fi
13
14
BIN_PATH="${PREFIX}/bin"
15
+ETC_PATH="${PREFIX}/etc"
16
SHARE_PATH="${PREFIX}/share/node-build"
17
-mkdir -p "$BIN_PATH" "$SHARE_PATH"
18
+mkdir -p "$BIN_PATH" "$ETC_PATH" "$SHARE_PATH"
19
20
install -p bin/* "$BIN_PATH"
21
+install -d etc/* "$ETC_PATH"
22
install -p -m 0644 share/node-build/* "$SHARE_PATH"
0 commit comments