Build/Helper/Scripts/versionHash.sh
Dennis Eichhorn 970c6b8127
Some checks failed
CI / linting (push) Has been cancelled
Test fixes
2024-05-16 02:14:53 +00:00

15 lines
829 B
Bash

#!/bin/bash
find ./phpOMS -type f -name "*.php" -exec md5sum {} \; > hashs.txt
find ./cssOMS -type f -name "*.css" -exec md5sum {} \; >> hashs.txt
find ./cssOMS -type f -name "*.scss" -exec md5sum {} \; >> hashs.txt
find ./jsOMS -type f -name "*.js" -exec md5sum {} \; >> hashs.txt
find ./Modules -type f -name "*.php" -exec md5sum {} \; >> hashs.txt
find ./Modules -type f -name "*.js" -exec md5sum {} \; >> hashs.txt
find ./Model -type f -name "*.php" -exec md5sum {} \; >> hashs.txt
find ./Model -type f -name "*.js" -exec md5sum {} \; >> hashs.txt
find ./Web -type f -name "*.php" -exec md5sum {} \; >> hashs.txt
find ./Web -type f -name "*.js" -exec md5sum {} \; >> hashs.txt
find ./Developer-Guide -type f -name "*.md" -exec md5sum {} \; >> hashs.txt
find ./User-Guide -type f -name "*.md" -exec md5sum {} \; >> hashs.txt