Skip to content

Commit e98ea23

Browse files
committed
Fix shasum in distro metadata
1 parent d374ed6 commit e98ea23

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
@@ -96,9 +96,10 @@ jobs:
9696
9797
for i in ubuntu kubuntu
9898
do
99-
wget https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/sha256-${i}-25.10
100-
SHA256=$(cat ./sha256-${i} | cut -d " " -f 1)
101-
rm sha256-${i}-25.10
99+
j=${i}-25.10
100+
wget https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/sha256-${j}
101+
SHA256=$(cat ./sha256-${j} | cut -d " " -f 1)
102+
rm sha256-${j}
102103
CAPS=$(echo "${i}" | tr '_-' ' ' | awk '{for(i=1;i<=NF;i++) $i=toupper(substr($i,1,1)) substr($i,2); print}')
103104
cat << EOF > update.py
104105
import json

0 commit comments

Comments
 (0)