mirror of
https://github.com/caprover/caprover
synced 2025-12-12 22:35:39 +00:00
feat(macOs): add support for macOs Catalina and above
This commit is contained in:
11
dev-scripts/dev-clean-run-as-dev-macos-step-1.sh
Executable file
11
dev-scripts/dev-clean-run-as-dev-macos-step-1.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
if ! [ $(id -u) = 0 ]; then
|
||||
echo "Must run as sudo or root"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# on macos Catalina and above, /captain is a symb link. we cannot remove the folder so we delete all files inside
|
||||
# rm -rf /captain && mkdir /captain
|
||||
rm -rf /captain/*
|
||||
chmod -R 777 /captain/
|
||||
Reference in New Issue
Block a user