From 6f2265519f216fd8961c0951e86fcb69ead2e3e5 Mon Sep 17 00:00:00 2001 From: "Michele.Clamp" Date: Fri, 23 Sep 2011 10:50:32 -0400 Subject: [PATCH] Updated README --- .google_authenticator | 2 +- README | 11 ++++++++--- makejar | 4 ++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.google_authenticator b/.google_authenticator index 5d6f434..bd9a62a 100644 --- a/.google_authenticator +++ b/.google_authenticator @@ -1 +1 @@ -SECRET_KEY +SECRETKEY diff --git a/README b/README index 011629e..369e005 100644 --- a/README +++ b/README @@ -14,12 +14,17 @@ Installation To compile and run in bash -. setpath +./makejar -javac AuthenticatorGUI.java +then to run -java AuthenticatorGUI +java -jar JAuth.jar +or + +java -jar JAuth.jar + +By default it looks in the current directory for a file called .google_authenticator Acknowledgements ---------------- diff --git a/makejar b/makejar index 3ae5401..08ea904 100755 --- a/makejar +++ b/makejar @@ -1,7 +1,11 @@ +. setpath + +javac AuthenticatorGUI.java jar xf forms-1.1.0.jar echo "Main-Class: AuthenticatorGUI" > manifest + jar cmf manifest JAuth.jar *.class *.ttf *.png com