Skip to content

Commit 7dc9c31

Browse files
committed
fix: frameworkResourcesPath for macOS
1 parent c77ca80 commit 7dc9c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/preprocess/preprocess.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func Start(version string, spotifyBasePath string, extractedAppsPath string, fla
122122
frameworkResourcesPath := ""
123123
switch runtime.GOOS {
124124
case "darwin":
125-
frameworkResourcesPath = filepath.Join(spotifyBasePath, "Contents", "Frameworks", "Chromium Embedded Framework.framework", "Resources")
125+
frameworkResourcesPath = filepath.Join(spotifyBasePath, "..", "Frameworks", "Chromium Embedded Framework.framework", "Resources")
126126
case "windows", "linux":
127127
frameworkResourcesPath = spotifyBasePath
128128
default:

0 commit comments

Comments
 (0)