We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
az webapp deploy
1 parent 94bf940 commit 856aed8Copy full SHA for 856aed8
src/azure-cli/azure/cli/command_modules/appservice/custom.py
@@ -9,7 +9,7 @@
9
import re
10
from xml.etree import ElementTree
11
12
-from urllib.parse import urlparse
+from urllib.parse import quote, urlparse
13
from urllib.request import urlopen
14
15
from binascii import hexlify
@@ -8544,7 +8544,7 @@ def _build_onedeploy_scm_url(params):
8544
deploy_url = deploy_url + '&ignorestack=' + str(params.should_ignore_stack)
8545
8546
if params.target_path is not None:
8547
- deploy_url = deploy_url + '&path=' + params.target_path
+ deploy_url = deploy_url + '&path=' + quote(params.target_path)
8548
8549
return deploy_url
8550
0 commit comments