Skip to content

Commit 5512b56

Browse files
committed
path.join was not a good idea
1 parent 82a3d8d commit 5512b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sourcemaps/tools/wrangler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export function getSentryCliCommand(
122122
const sentryCliOptions = options.selfHosted ? ` --url ${options.url}` : '';
123123
const orgAndProjectArgs = `--org=${options.orgSlug} --project=${options.projectSlug}`;
124124

125-
const stripPrefixPath = path.join(options.outDir, '..');
125+
const stripPrefixPath = `${options.outDir}${path.sep}..`;
126126

127127
return [
128128
'_SENTRY_RELEASE=$(sentry-cli releases propose-version)',

0 commit comments

Comments
 (0)