Skip to content
Snippets Groups Projects
Unverified Commit 336cae5c authored by Kali Kaneko's avatar Kali Kaneko Committed by meskio
Browse files

[refactor] move svg icon to assets folder

parent f4ae2720
No related branches found
No related tags found
No related merge requests found
riseup
\ No newline at end of file
File added
branding/assets/riseup/icon.ico

4.19 KiB

File moved
......@@ -116,7 +116,7 @@ func getIconPath() string {
if fileExist(icoPath) {
return icoPath
}
icoPath = path.Join(gopath, "src", "0xacab.org", "leap", "riseup_vpn", "assets", "riseupvpn.ico")
icoPath = path.Join(gopath, "src", "0xacab.org", "leap", "bitmask-vpn", "branding", "assets", "default", "icon.ico")
if fileExist(icoPath) {
return icoPath
}
......@@ -128,7 +128,8 @@ func getIconPath() string {
if fileExist(icnsPath) {
return icnsPath
}
icnsPath = path.Join(gopath, "src", "0xacab.org", "leap", "riseup_vpn", "assets", "riseupvpn.icns")
icnsPath = path.Join(gopath, "src", "0xacab.org", "leap", "bitmask-vpn", "branding", "assets", "default", "icon.icns")
if fileExist(icnsPath) {
return icnsPath
}
......@@ -151,7 +152,7 @@ func getIconPath() string {
return svgPath
}
svgPath = path.Join(gopath, "src", "0xacab.org", "leap", "bitmask-vpn", svgFileName)
svgPath = path.Join(gopath, "src", "0xacab.org", "leap", "bitmask-vpn", "branding", "assets", "default", svgFileName)
if fileExist(svgPath) {
return svgPath
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment