Skip to content

Commit 8b4df13

Browse files
committed
fix(cli): Leading slash for project endpoints
1 parent 43e6fc9 commit 8b4df13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/lib/utils.js.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function getProjectsPath(action, ids) {
173173
}
174174

175175
if (['getplatform', 'getkey', 'getwebhook'].includes(action)) {
176-
path += ids[1];
176+
path += `/${ids[1]}`;
177177
}
178178

179179
return path;

0 commit comments

Comments
 (0)