It already reads the config for defaults, and now it also stores
the last passed parameters in the config.
Signed-off-by: Johannes Schindelin <redacted>
---
git-instaweb.sh | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/git-instaweb.sh b/git-instaweb.sh
index 9829c59..1d3ea73 100755
--- a/git-instaweb.sh
+++ b/git-instaweb.sh
@@ -78,6 +78,7 @@ do
;;
--local|-l)
local=true
+ git repo-config instaweb.local true
;;
-d|--httpd|--httpd=*)
case "$#,$1" in
@@ -89,6 +90,7 @@ do
httpd="$2"
shift ;;
esac
+ git-repo-config instaweb.httpd "$httpd"
;;
-b|--browser|--browser=*)
case "$#,$1" in
@@ -100,6 +102,7 @@ do
browser="$2"
shift ;;
esac
+ git-repo-config instaweb.browser "$browser"
;;
-p|--port|--port=*)
case "$#,$1" in
@@ -111,6 +114,7 @@ do
port="$2"
shift ;;
esac
+ git-repo-config instaweb.port "$port"
;;
-m|--module-path=*|--module-path)
case "$#,$1" in
@@ -122,6 +126,7 @@ do
module_path="$2"
shift ;;
esac
+ git-repo-config instaweb.modulepath "$module_path"
;;
*)
usage
--
1.4.2.rc2.g6a4e