Skip to content

Commit c0854e4

Browse files
committed
update firxfox profile path
1 parent c5971f1 commit c0854e4

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

core/browser_darwin.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import (
1010
)
1111

1212
const (
13-
fireFoxProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-release/"
14-
fireFoxBetaProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-beta/"
15-
fireFoxDevProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.dev-edition-default/"
16-
fireFoxNightlyProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-nightly/"
17-
fireFoxESRProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-esr/"
13+
fireFoxProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-release*/"
14+
fireFoxBetaProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-beta*/"
15+
fireFoxDevProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.dev-edition-default*/"
16+
fireFoxNightlyProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-nightly*/"
17+
fireFoxESRProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-esr*/"
1818
chromeProfilePath = "/Users/*/Library/Application Support/Google/Chrome/*/"
1919
chromeBetaProfilePath = "/Users/*/Library/Application Support/Google/Chrome Beta/*/"
2020
chromiumProfilePath = "/Users/*/Library/Application Support/Chromium/*/"

core/browser_linux.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
)
1212

1313
const (
14-
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default-release/"
15-
fireFoxBetaProfilePath = "/home/*/.mozilla/firefox/*.default-beta/"
16-
fireFoxDevProfilePath = "/home/*/.mozilla/firefox/*.dev-edition-default/"
17-
fireFoxNightlyProfilePath = "/home/*/.mozilla/firefox/*.default-nightly/"
18-
fireFoxESRProfilePath = "/home/*/.mozilla/firefox/*.default-esr/"
14+
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default-release*/"
15+
fireFoxBetaProfilePath = "/home/*/.mozilla/firefox/*.default-beta*/"
16+
fireFoxDevProfilePath = "/home/*/.mozilla/firefox/*.dev-edition-default*/"
17+
fireFoxNightlyProfilePath = "/home/*/.mozilla/firefox/*.default-nightly*/"
18+
fireFoxESRProfilePath = "/home/*/.mozilla/firefox/*.default-esr*/"
1919
chromeProfilePath = "/home/*/.config/google-chrome/*/"
2020
chromiumProfilePath = "/home/*/.config/chromium/*/"
2121
edgeProfilePath = "/home/*/.config/microsoft-edge*/*/"

core/browser_windows.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import (
1313
)
1414

1515
const (
16-
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-release/"
17-
fireFoxBetaProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-beta/"
18-
fireFoxDevProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.dev-edition-default/"
19-
fireFoxNightlyProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-nightly/"
20-
fireFoxESRProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-esr/"
16+
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-release*/"
17+
fireFoxBetaProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-beta*/"
18+
fireFoxDevProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.dev-edition-default*/"
19+
fireFoxNightlyProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-nightly*/"
20+
fireFoxESRProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-esr*/"
2121
chromeProfilePath = "/AppData/Local/Google/Chrome/User Data/*/"
2222
chromeKeyPath = "/AppData/Local/Google/Chrome/User Data/Local State"
2323
chromeBetaProfilePath = "/AppData/Local/Google/Chrome Beta/User Data/*/"

0 commit comments

Comments
 (0)