diff options
author | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:58:33 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:58:33 +0800 |
commit | 05c18998959b6fbc5da674489371a8d3e88e7db2 (patch) | |
tree | 554dbc5fdcabd96aafffc8971f545a30d4c4eb7e | |
parent | 7e88dd4e6b5431a6c7bb2187965fd019261e5f3c (diff) | |
download | go-tangerine-05c18998959b6fbc5da674489371a8d3e88e7db2.tar.gz go-tangerine-05c18998959b6fbc5da674489371a8d3e88e7db2.tar.zst go-tangerine-05c18998959b6fbc5da674489371a8d3e88e7db2.zip |
Windos case for assetPath had a typo
-rw-r--r-- | ethereal/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/flags.go b/ethereal/flags.go index 9a4318855..d5ca9f336 100644 --- a/ethereal/flags.go +++ b/ethereal/flags.go @@ -52,7 +52,7 @@ func defaultAssetPath() string { assetPath = filepath.Join(exedir, "../Resources") case "linux": assetPath = "/usr/share/ethereal" - case "window": + case "windows": assetPath = "./assets" default: assetPath = "." |