BUG REPORT documentation #42
Replies: 3 comments
-
Came here for the same issue, but on macOS. For example, this will work ln -s /Users/Username/Projects/my-plugin/src/com.example.my-plugin.sdPlugin ~/Library/Application\ Support/com.elgato.StreamDeck/Plugins/ While this won't (assuming you are inside your project folder) ln -s ./src/com.example.my-plugin.sdPlugin ~/Library/Application\ Support/com.elgato.StreamDeck/Plugins/ Edit After testing on Windows I can confirm that the SolutionSo to recap, the correct commands to run for the symlinks should be the ones below. macOS # Here using $(pwd) to get the full absolute path to the plugin folder
ln -s $(pwd)/src/com.example.my-plugin.sdPlugin ~/Library/Application\ Support/com.elgato.StreamDeck/Plugins/ Windows # Note: this works inside the cmd, not on PowerShell
# Here using %cd% to get the full absolute path to the plugin folder
mklink /D C:\Users\%USERNAME%\AppData\Roaming\Elgato\StreamDeck\Plugins\com.example.my-plugin.sdPlugin %cd%\src\com.example.my-plugin.sdPlugin |
Beta Was this translation helpful? Give feedback.
-
Thanks for reporting this, and apologies for any inconvenience it's caused. @ChekTek could you review the getting started guide to reflect the correct sym-linking please. |
Beta Was this translation helpful? Give feedback.
-
Thanks for pointing this out! I've updated the documentation. Shoutout to @Hecsall for providing the solution. https://docs.elgato.com/sdk/plugins/getting-started (you may have to clear your browser cache) |
Beta Was this translation helpful? Give feedback.
-
Firstly:
It is not clear where to post bug reports for the https://docs.elgato.com page. Link on https://docs.elgato.com/sdk/support/help-and-bug-reports send me to this discussion page without a template for bug reports.
Now to the bug:
https://docs.elgato.com/sdk/plugins/getting-started#4.-add-the-plugin-to-stream-deck
The command for the Windows SymLink is in the wrong order.
It needs to be
mklink /D <AppData-folder> <plugin-repo-folder>
see: https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc753194(v=ws.10)?redirectedfrom=MSDNAlso, for me, it only worked when using absolute paths for both.
Beta Was this translation helpful? Give feedback.
All reactions