Skip to content

Commit

Permalink
Update windows pathname
Browse files Browse the repository at this point in the history
  • Loading branch information
hannemennah committed Oct 29, 2015
1 parent 4bba8c2 commit 21b12bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commandline.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ func main() {
var staticDir string
switch runtime.GOOS {
case "windows":
configDir = os.Getenv("HOME") + "\\.factom\\"
staticDir = configDir + "walletapp\\"
configDir = os.Getenv("HOME") + "/.factom/"
staticDir = configDir + "walletapp/"
case "darwin":
configDir = os.Getenv("HOME") + "/.factom/"
staticDir = "./staticfiles/"
Expand Down

0 comments on commit 21b12bc

Please sign in to comment.