don't make INTEGRATOR_ID url safe since we aren't direcly downloading

This commit is contained in:
2021-09-21 10:43:10 -04:00
parent 574546b004
commit e482c9507a
+2 -2
View File
@@ -6,8 +6,8 @@
)
## Make $INTEGRATOR_ID URL safe
$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('@'),'%40'
$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('+'),'%2B'
#$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('@'),'%40'
#$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('+'),'%2B'
## Set the Atera URL for your specific environment
$BASE_URL = 'https://emberkom.atera.com'