File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ godot.tar.gz
11
11
# Output
12
12
out /
13
13
releases /
14
+ sha512sums /
14
15
tmp /
Original file line number Diff line number Diff line change @@ -238,6 +238,14 @@ if [ "${build_classical}" == "1" ]; then
238
238
zip -q -9 -r -D " ${reldir} /${godot_basename} _export_templates.tpz" templates/*
239
239
popd
240
240
241
+ # # SHA-512 sums (Classical) ##
242
+
243
+ pushd ${reldir}
244
+ sha512sum [Gg]* > SHA512-SUMS.txt
245
+ mkdir -p ${basedir} /sha512sums/${godot_version}
246
+ cp SHA512-SUMS.txt ${basedir} /sha512sums/${godot_version} /
247
+ popd
248
+
241
249
fi
242
250
243
251
# Mono
@@ -410,6 +418,14 @@ if [ "${build_mono}" == "1" ]; then
410
418
zip -q -9 -r -D " ${reldir_mono} /${godot_basename} _mono_export_templates.tpz" templates/*
411
419
popd
412
420
421
+ # # SHA-512 sums (Mono) ##
422
+
423
+ pushd ${reldir_mono}
424
+ sha512sum [Gg]* >> SHA512-SUMS.txt
425
+ mkdir -p ${basedir} /sha512sums/${godot_version} /mono
426
+ cp SHA512-SUMS.txt ${basedir} /sha512sums/${godot_version} /mono/
427
+ popd
428
+
413
429
fi
414
430
415
431
echo " All editor binaries and templates prepared successfully for release"
You can’t perform that action at this time.
0 commit comments