summaryrefslogtreecommitdiff
path: root/devel/atlassian-plugin-sdk/files/patch-parse-integer
diff options
context:
space:
mode:
Diffstat (limited to 'devel/atlassian-plugin-sdk/files/patch-parse-integer')
-rw-r--r--devel/atlassian-plugin-sdk/files/patch-parse-integer33
1 files changed, 0 insertions, 33 deletions
diff --git a/devel/atlassian-plugin-sdk/files/patch-parse-integer b/devel/atlassian-plugin-sdk/files/patch-parse-integer
deleted file mode 100644
index f35253ee885e..000000000000
--- a/devel/atlassian-plugin-sdk/files/patch-parse-integer
+++ /dev/null
@@ -1,33 +0,0 @@
---- bin/atlas-install-plugin 2015-03-11 00:21:27.000000000 -0400
-+++ bin/atlas-install-plugin 2015-04-02 17:15:41.000000000 -0400
-@@ -85,23 +84,23 @@
- case "$1" in
- "-p" | "--http-port")
-- MVN_PARAMS="${MVN_PARAMS} -Dhttp.port='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Dhttp.port=$2"
- shift 2;;
- "--context-path")
-- MVN_PARAMS="${MVN_PARAMS} -Dcontext.path='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Dcontext.path=$2"
- shift 2;;
- "--server")
-- MVN_PARAMS="${MVN_PARAMS} -Dserver='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Dserver=$2"
- shift 2;;
- "--username")
-- MVN_PARAMS="${MVN_PARAMS} -Dusername='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Dusername=$2"
- shift 2;;
- "--password")
-- MVN_PARAMS="${MVN_PARAMS} -Dpassword='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Dpassword=$2"
- shift 2;;
- "--plugin-key")
-- MVN_PARAMS="${MVN_PARAMS} -Datlassian.plugin.key='${2}'"
-+ MVN_PARAMS="${MVN_PARAMS} -Datlassian.plugin.key=$2"
- shift 2;;
- *)
-- MVN_PARAMS="${MVN_PARAMS} ${1}"
-+ MVN_PARAMS="$MVN_PARAMS $1"
- shift 1;; esac
- done