diff --git a/README.md b/README.md index 3c794de..6b730e5 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,13 @@ The extractor source code : [https://github.com/yani-/wpress](https://github.com [Mac - Download now](https://github.com/fifthsegment/Wpress-Extractor/blob/master/dist/mac/wpress_extractor?raw=true) *IMPORTANT FOR MAC: Don't forget to make the binary executable by running a `chmod +x wpress_extractor` on the downloaded file via the Terminal. - ## How to extract/open .wpress files ? Simply provide a path to your downloaded .wpress file as the first commandline argument to the program. `./wpress_extractor /path/to/my/backup.wpress` +### Linux +`go run ./wpress_extractor.go /path/to/my/backup.wpress` + ## I'm not very technical - How to use this thing? ### Windows Instructions diff --git a/wpress-extractor.go b/wpress-extractor.go index 9c406bb..8e4960e 100644 --- a/wpress-extractor.go +++ b/wpress-extractor.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/yani-/wpress" + "./inc" "os" )