From 3050b5af2b76504c904b176818a7ab2b09fba45b Mon Sep 17 00:00:00 2001 From: Mark Fox Date: Tue, 21 Dec 2021 14:09:01 -0800 Subject: [PATCH] Actually install etc/install/prefix-retry.bash (second attempt following #479) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6c8cc55e3..b262350c1 100755 --- a/install.sh +++ b/install.sh @@ -18,5 +18,5 @@ SHARE_PATH="${PREFIX}/share/node-build" mkdir -p "$BIN_PATH" "$ETC_PATH" "$SHARE_PATH" install -p bin/* "$BIN_PATH" -install -d etc/* "$ETC_PATH" +install -p -m 0644 etc/install/* "$ETC_PATH/install" install -p -m 0644 share/node-build/* "$SHARE_PATH"