We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da71825 + ed46704 commit 9abf646Copy full SHA for 9abf646
1 file changed
linuxdeploy-plugin-conda.sh
@@ -126,9 +126,12 @@ fi
126
127
# create symlinks for all binaries in usr/conda/bin/ in usr/bin/
128
mkdir -p "$APPDIR"/usr/bin/
129
-for i in "$APPDIR"/usr/conda/bin/*; do
130
- ln -s -r "$i" "$APPDIR"/usr/bin/
+pushd "$APPDIR"
+for i in usr/conda/bin/*; do
131
+ ln -s ../../"$i" usr/bin/
132
done
133
+popd
134
+
135
136
# remove bloat
137
pushd "$APPDIR"/usr/conda
0 commit comments