Skip to content

Commit

Permalink
what
Browse files Browse the repository at this point in the history
  • Loading branch information
fukiame committed Nov 29, 2023
1 parent d410bea commit 627b243
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ jobs:
- name: upload
run: |
cd kernel
if [ $(ls *.zip) ]; then
if [[ $(ls *.zip) ]]; then
for file in *.zip ; do
bash ../tg_utils.sh up "${file}" "$(cat "${file}.info")"
done
fi
if [ $(ls *.log) ]; then
if [[ $(ls *.log) ]]; then
for file in *.log ; do
if [ -e "${file}.info" ]; then
bash ../tg_utils.sh up "${file}" "$(cat "${file}.info")"
Expand Down

0 comments on commit 627b243

Please sign in to comment.