Fork of official Bluesky PDS (Personal Data Server).

Change --force to -f for compatibility

Docker image runs BusyBox, if we want to run pdsadmin from within the docker image, rm --force will fail. Changed to rm -f as it is the POSIX way.

authored by

madmalkav and committed by
GitHub
dcce1b29 00078b46

+1 -1
+1 -1
pdsadmin.sh
··· 26 26 27 27 chmod +x "${SCRIPT_FILE}" 28 28 if "${SCRIPT_FILE}" "$@"; then 29 - rm --force "${SCRIPT_FILE}" 29 + rm -f "${SCRIPT_FILE}" 30 30 fi