From fe0b25e0ae7b87e5f390d767fe285a0c69215601 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 26 Dec 2021 00:25:03 -0600 Subject: [PATCH] Resolve copy operation --- install.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.bash b/install.bash index e15e15d..5f4d433 100755 --- a/install.bash +++ b/install.bash @@ -36,7 +36,7 @@ mkdir -p "${SDTD_BIN_DIR}" for script in "${GIT_DIR}/Scripts/"*; do script_name="$(basename "${script}")" script_suffixless="${script_name%.bash}" - cp "${script_suffixless}" "${SDTD_BIN_DIR}" + cat "${script}" > "${SDTD_BIN_DIR}/${script_suffixless}" chmod 740 "${SDTD_BIN_DIR}/${script_suffixless}" done