1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-06-08 11:05:09 +03:00
parent cff4365b35
commit 085b51724a

View File

@ -3,15 +3,15 @@ import * as path from "path"
let appPath = ""
switch(process.platform) {
case "win32": {
case "win32":
appPath = path.join("./dist/win-unpacked/Lens.exe")
}
case "linux": {
break
case "linux":
appPath = path.join("./dist/linux-unpacked/kontena-lens")
}
case "darwin": {
break
case "darwin":
appPath = path.join("./dist/mac/LensDev.app/Contents/MacOS/LensDev")
}
break
}
export function setup() {