Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
SpecialK: Fix incorrect find type
  • Loading branch information
sonic2kk committed Nov 16, 2023
commit d27c7676226f25fac554a70f49dd3124ca5d4678
2 changes: 1 addition & 1 deletion steamtinkerlaunch
Original file line number Diff line number Diff line change
Expand Up @@ -9877,7 +9877,7 @@ function dlSpecialK {
if [ "$SPEKVERS" == "custom" ]; then
writelog "INFO" "${FUNCNAME[0]} - Custom SpecialK version selected -- Looking for manually placed SpecialK DLLs or EXE to extract them from"
# POSSIBLECUSTOMSPEKEXE="$( ls "$SPEKDLDIR/$SPEKVERS/*.exe" | head -n1 )" # Get first EXE from custom SpecialK directory
POSSIBLECUSTOMSPEKEXE="$( find "$SPEKDLDIR/$SPEKVERS" -type -f -name "*.exe" -print -quit )"
POSSIBLECUSTOMSPEKEXE="$( find "$SPEKDLDIR/$SPEKVERS" -type f -name "*.exe" -print -quit )"
POSSIBLECUSTOMSPEKEXE="$( realpath "$POSSIBLECUSTOMSPEKEXE" )"

if [ -f "$SPEK64SRC" ] && [ -f "$SPEK64SRC" ]; then
Expand Down