Fix paths passed to KP Steam

This commit is contained in:
Filip Maciejewski 2020-01-28 13:07:32 +01:00
parent a0a0339f5d
commit 0da8f21107
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export function uploadLegacy(itemId: string, path: string): Promise<number> {
`upload`,
`--app=${ARMA_APPID}`,
`--item=${itemId}`,
`--path=\"${path}\"`,
`--path=${path}`,
`--legacy`,
]);
}