refactor: improve fs_* (#99)

improve `_guard_path` to use `realpath -m <path>` to get absolute path
This commit is contained in:
sigoden
2024-08-17 12:40:32 +08:00
committed by GitHub
parent a53ca4fda2
commit 760ea38fed
4 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ main() {
}
_guard_path() {
path="$(realpath "$1")"
path="$(realpath -m "$1")"
action="$2"
if [[ ! "$path" == "$(pwd)"* ]]; then
if [ -t 1 ]; then
+1 -1
View File
@@ -17,7 +17,7 @@ main() {
}
_guard_path() {
path="$(realpath "$1")"
path="$(realpath -m "$1")"
action="$2"
if [[ ! "$path" == "$(pwd)"* ]]; then
if [ -t 1 ]; then