Skip to content

Commit df89c6f

Browse files
committed
feat(preprocess): merge windows & linux case
1 parent cdda47a commit df89c6f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/preprocess/preprocess.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ func Start(version string, spotifyBasePath string, extractedAppsPath string, fla
123123
switch runtime.GOOS {
124124
case "darwin":
125125
frameworkResourcesPath = filepath.Join(spotifyBasePath, "Contents", "Frameworks", "Chromium Embedded Framework.framework", "Resources")
126-
case "windows":
127-
frameworkResourcesPath = spotifyBasePath
128-
case "linux":
126+
case "windows", "linux":
129127
frameworkResourcesPath = spotifyBasePath
130128
default:
131129
utils.PrintError("Unsupported OS for V8 snapshot finding: " + runtime.GOOS)

0 commit comments

Comments
 (0)