From 7be2d9d4062ff6b86cc6ec1bf6f383e58af266de Mon Sep 17 00:00:00 2001 From: Harel M Date: Sun, 22 Dec 2024 16:18:55 +0200 Subject: [PATCH] Fixes #34 - Remove profiles from shell script --- graphhopper.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/graphhopper.sh b/graphhopper.sh index 2e4cef4..06e6b45 100755 --- a/graphhopper.sh +++ b/graphhopper.sh @@ -28,7 +28,6 @@ function printBashUsage { echo "--import only create the graph cache, to be used later for faster starts" echo "-c | --config application configuration file location" echo "-o | --graph-cache directory for graph cache output" - echo "-p | --profiles comma separated list of vehicle profiles" echo "--port port for web server [default: 8989]" echo "--host host address of the web server [default: 0.0.0.0]" echo "-h | --help display this message" @@ -42,7 +41,6 @@ while [ ! -z $1 ]; do -i|--input) FILE="$2"; shift 2;; --url) URL="$2"; shift 2;; -o|--graph-cache) GRAPH="$2"; shift 2;; - -p|--profiles) GH_WEB_OPTS="$GH_WEB_OPTS -Ddw.graphhopper.graph.flag_encoders=$2"; shift 2;; --port) GH_WEB_OPTS="$GH_WEB_OPTS -Ddw.server.application_connectors[0].port=$2"; shift 2;; --host) GH_WEB_OPTS="$GH_WEB_OPTS -Ddw.server.application_connectors[0].bind_host=$2"; shift 2;; -h|--help) printBashUsage