Skip to content

Commit cfc8647

Browse files
committed
cog-drm: Fix argument handling in DRM launcher script
The cog DRM script was updated to correctly handle arguments by wrapping them with quotes ("$@"). This ensures proper handling of arguments containing spaces or special characters. Fixes SC2068 (error): Double quote array expansions to avoid re-splitting elements.
1 parent 9a8f5a1 commit cfc8647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes-browser/cog/files/cog-drm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#! /bin/bash
22

3-
/usr/bin/cog -P drm $@
3+
/usr/bin/cog -P drm "$@"

0 commit comments

Comments
 (0)