Skip to content

Commit 6b16e87

Browse files
committed
fix files.sh
1 parent 21c4618 commit 6b16e87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/resources/META-INF/plugin.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
]]></description>
1010

1111
<change-notes><![CDATA[
12-
CHANGELOG_PLACEHOLDER
12+
13+
see <a href="https://github.com/patricklx/intellij-wsl-symlinks/blob/main/CHANGELOG.md">https://github.com/patricklx/intellij-wsl-symlinks/</a> for more
1314
]]>
1415
</change-notes>
1516

src/main/resources/files.sh

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ while IFS='$\n' read line; do
44
id=${command[0]};
55
type=${command[1]};
66
value=${command[2]};
7-
# echo "$id;$type;$value" > /var/log/intellij-idea-symlink.log
87
if [ "$type" == "is-symlink" ]; then
98
(test -L "$value") && echo "$id;true" || echo "$id;false";
109
fi

0 commit comments

Comments
 (0)