mirror of
https://github.com/VSCodium/vscodium
synced 2024-11-04 23:49:50 +00:00
29 lines
552 B
Bash
Executable file
29 lines
552 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# shellcheck disable=SC1091
|
|
|
|
set -e
|
|
|
|
npm install -g checksum
|
|
|
|
sum_file() {
|
|
if [[ -f "${1}" ]]; then
|
|
echo "Calculating checksum for ${1}"
|
|
checksum -a sha256 "${1}" > "${1}".sha256
|
|
checksum "${1}" > "${1}".sha1
|
|
fi
|
|
}
|
|
|
|
mkdir -p assets
|
|
|
|
git archive --format tar.gz --output="./assets/${APP_NAME}-${RELEASE_VERSION}-src.tar.gz" HEAD
|
|
git archive --format zip --output="./assets/${APP_NAME}-${RELEASE_VERSION}-src.zip" HEAD
|
|
|
|
cd assets
|
|
|
|
for FILE in *; do
|
|
if [[ -f "${FILE}" ]]; then
|
|
sum_file "${FILE}"
|
|
fi
|
|
done
|
|
|
|
cd ..
|