Skip to content

Commit

Permalink
fix(shorebird_cli): use path separator when setting channel in aab (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanoltman authored Oct 5, 2023
1 parent 173468a commit fb1477c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class PreviewCommand extends ShorebirdCommand {
if (file is File) {
await encoder.addFile(
file,
file.path.replaceFirst('$outputPath/', ''),
file.path.replaceFirst('$outputPath${p.separator}', ''),
);
}
}
Expand Down

0 comments on commit fb1477c

Please sign in to comment.