eprolo-cli 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/eprolo-cli.js +1 -1
- package/package.json +1 -1
package/bin/eprolo-cli.js
CHANGED
|
@@ -132,7 +132,7 @@ function normalizeCredentialValue(value) {
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
async function postJson(baseUrl, pathName, body) {
|
|
135
|
-
const url = `${baseUrl}
|
|
135
|
+
const url = `${baseUrl}`;
|
|
136
136
|
if (typeof fetch === "function") {
|
|
137
137
|
const res = await fetch(url, {
|
|
138
138
|
method: "POST",
|
package/package.json
CHANGED