summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-07-26 22:43:11 +0800
committerruki <[email protected]>2021-07-26 22:43:11 +0800
commiteb17b3a6e8f17bb0a0636c556b14cea0313e08d1 (patch)
tree03f24c85473223584046daed668a18bc12724c78
parent8cf70572055c6b479145d2ee87add9435eec5fec (diff)
improve install core
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 0c7db0fcc..cc7c61ba1 100644
--- a/makefile
+++ b/makefile
@@ -114,10 +114,10 @@ install:
@cp -r xmake/* $(xmake_dir_install)
@# install the xmake core file
@cp -p $(xmake_core) $(xmake_core_install)
- @chmod 777 $(xmake_core_install)
+ @chmod 755 $(xmake_core_install)
@# install the xrepo bin file
@cp -p ./scripts/xrepo.sh $(xrepo_bin_install)
- @chmod 777 $(xrepo_bin_install)
+ @chmod 755 $(xrepo_bin_install)
@# remove xmake.out
@if [ -f "$(TMP_DIR)/xmake.out" ]; then rm $(TMP_DIR)/xmake.out; fi
@# ok