Skip to content

Commit 15e7490

Browse files
committed
fix(tool): Use uppercase for custom CPU template files
I renamed the custom CPU template files uppercase, but I forgot to update their names in release.sh. Fixes: 2862941 ("chore: Use uppercase for custom CPU templates") Signed-off-by: Takahiro Itazuri <itazur@amazon.com>
1 parent 59fbf09 commit 15e7490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ cp -v -t "$RELEASE_DIR" LICENSE NOTICE THIRD-PARTY
177177
check_swagger_artifact src/firecracker/swagger/firecracker.yaml "$VERSION"
178178
cp -v src/firecracker/swagger/firecracker.yaml "$RELEASE_DIR/firecracker_spec-$VERSION.yaml"
179179

180-
CPU_TEMPLATES=(c3 t2 t2s t2cl t2a v1n1)
180+
CPU_TEMPLATES=(C3 T2 T2S T2CL T2A V1N1)
181181
for template in "${CPU_TEMPLATES[@]}"; do
182182
cp -v tests/data/custom_cpu_templates/$template.json $RELEASE_DIR/$template-$VERSION.json
183183
done

0 commit comments

Comments
 (0)