Commit a39c7367 authored by Taylor Gerring's avatar Taylor Gerring

bump last resort check out of ifelse

parent d90b71bc
...@@ -36,13 +36,14 @@ func DefaultAssetPath() string { ...@@ -36,13 +36,14 @@ func DefaultAssetPath() string {
default: default:
assetPath = "." assetPath = "."
} }
}
// Check if the assetPath exists. If not, try the source directory // Check if the assetPath exists. If not, try the source directory
// This happens when binary is run from outside cmd/mist directory // This happens when binary is run from outside cmd/mist directory
if _, err := os.Stat(assetPath); os.IsNotExist(err) { if _, err := os.Stat(assetPath); os.IsNotExist(err) {
assetPath = path.Join(srcdir, "assets") assetPath = path.Join(srcdir, "assets")
}
} }
return assetPath return assetPath
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment