Skip to content

Commit 613d1c0

Browse files
authored
fix: missing await in generator (#12)
* fix: missing await in generator * tiny: relabeling a CI build step
1 parent a3c9528 commit 613d1c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/regen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cp .build/release/sourcedocs /usr/local/bin
3333
popd
3434
35-
- name: Regen `magicbell-java-client`
35+
- name: Regen `magicbell-swift-client`
3636
run: yarn codegen
3737
env:
3838
LIBLAB_TOKEN: ${{ secrets.LIBLAB_ACTION_TOKEN }}

scripts/gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async function build() {
5454
}
5555
);
5656

57-
move("output/sources", "Sources/MagicBellClient/generated")
57+
await move("output/sources", "Sources/MagicBellClient/generated")
5858

5959
if (!hasChangesInPath("Sources")) {
6060
console.log("No changes detected in output.");

0 commit comments

Comments
 (0)