Skip to content

Commit cf68744

Browse files
authored
Fix shasum in distro metadata
1 parent cde0c42 commit cf68744

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ jobs:
9292
9393
for i in ubuntu kubuntu
9494
do
95-
wget https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/sha256-${i}-25.10
96-
SHA256=$(cat ./sha256-${i} | cut -d " " -f 1)
97-
rm sha256-${i}-25.10
95+
j=${i}-25.10
96+
wget https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/sha256-${j}
97+
SHA256=$(cat ./sha256-${j} | cut -d " " -f 1)
98+
rm sha256-${j}
9899
CAPS=$(echo "${i}" | tr '_-' ' ' | awk '{for(i=1;i<=NF;i++) $i=toupper(substr($i,1,1)) substr($i,2); print}')
99100
cat << EOF > update.py
100101
import json

0 commit comments

Comments
 (0)