1aecb41b7e
This patch writes a warning out to stderr to notify element authors that may be using map-services to migrate to svc-map. Change-Id: Ic80db16c607958d025e89b3a4058a9cbb568938e
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# For Debian map-services is currently a noop
|
|
# We pass through the service name directly
|
|
echo "$@"
|
|
>&2 echo "WARNING: map-services has been deprecated. Please use svc-map."
|