Skip to content

Commit

Permalink
justfile: Use relative links for DESTDIR style installs
Browse files Browse the repository at this point in the history
This resolves an issue with Serpent OS when the installed plugin
links point back to `/mason/install/usr/bin/pop-launcher`

Signed-off-by: Ikey Doherty <[email protected]>
  • Loading branch information
ikeycode authored and mmstick committed Aug 14, 2024
1 parent c994240 commit 6a1b8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ install-plugins:
dest={{plugin-dir}}${plugin}
mkdir -p ${dest}
install -Dm0644 plugins/src/${plugin}/*.ron ${dest}
ln -sf {{bin-path}} {{plugin-dir}}${plugin}/$(echo ${plugin} | sed 's/_/-/')
ln -srf {{bin-path}} {{plugin-dir}}${plugin}/$(echo ${plugin} | sed 's/_/-/')
done
# Install pop-launcher scripts
Expand Down

0 comments on commit 6a1b8b9

Please sign in to comment.