Skip to content

Commit

Permalink
fix: The screen recording file is stored in the "Video" directory, bu…
Browse files Browse the repository at this point in the history
…t clicking on "Open Folder" in the banner notification will redirect to the main directory

The dde file manager script CD did not include ""

Log: The screen recording file is stored in the "Video" directory, but clicking on "Open Folder" in the banner notification will redirect to the main directory
Bug: https://pms.uniontech.com/bug-view-261441.html
  • Loading branch information
liyigang1 authored and deepin-bot[bot] committed Jun 25, 2024
1 parent a0de5bf commit 9d4345d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/scripts/dde-file-manager
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
args=""
current_path=$(pwd)
for arg in "$@"; do
if [[ $arg =~ "." ]] || [[ $arg =~ ".." ]] || [[ $arg =~ "~/" ]]; then
if [[ $arg == "." ]] || [[ $arg == ".." ]] || [[ $arg == *"/." ]] || [[ $arg == *"/.." ]] || [[ $arg =~ "./" ]] || [[ $arg =~ "../" ]] || [[ $arg =~ "~/" ]]; then
name=${arg##*/}
path=${arg%/*}"/"
if [[ $name == "." ]] || [[ $name == ".." ]]; then
Expand All @@ -20,7 +20,7 @@ for arg in "$@"; do
path=$(echo "$path" | sed "s|~/|$home_path/|g")
cd $current_path
fi
cd $path
cd "$path"
path=$(pwd)"/"
cd $current_path
absolute_path=$path$name
Expand Down

0 comments on commit 9d4345d

Please sign in to comment.