mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-28 07:39:36 +08:00
Update flutter-build.yml
fix find Runner.res
This commit is contained in:
parent
4fe33db4f3
commit
c9caa5687a
8
.github/workflows/flutter-build.yml
vendored
8
.github/workflows/flutter-build.yml
vendored
@ -103,11 +103,13 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
runner_res=$(find . -name "Runner.res")
|
||||
if [ $runner_res == '' ]; then
|
||||
if [ "$runner_res" == "" ]; then
|
||||
echo "Runner.res: not found"
|
||||
else
|
||||
echo "Runner.res: $runner_res"
|
||||
cp $runner_res ./Runner.res
|
||||
echo "list ./Runner.res"
|
||||
ls -l ./Runner.res
|
||||
fi
|
||||
|
||||
- name: Sign rustdesk files
|
||||
@ -219,11 +221,13 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
runner_res=$(find . -name "Runner.res")
|
||||
if [ $runner_res == '' ]; then
|
||||
if [ "$runner_res" == "" ]; then
|
||||
echo "Runner.res: not found"
|
||||
else
|
||||
echo "Runner.res: $runner_res"
|
||||
cp $runner_res ./Runner.res
|
||||
echo "list ./Runner.res"
|
||||
ls -l ./Runner.res
|
||||
fi
|
||||
|
||||
- name: Sign rustdesk files
|
||||
|
Loading…
Reference in New Issue
Block a user