mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-24 12:08:50 +03:00
Hopefully unzip to the right place
This commit is contained in:
parent
8e934e1b9b
commit
3535760163
1 changed files with 4 additions and 4 deletions
|
@ -19,12 +19,12 @@ if [ "${CI_PIPELINE_TRIGGERED}" ]; then
|
||||||
unzip binaries.zip
|
unzip binaries.zip
|
||||||
# we zip 'build/nheko.app' in cirrus ci, cirrus itself puts it in a 'build' directory
|
# we zip 'build/nheko.app' in cirrus ci, cirrus itself puts it in a 'build' directory
|
||||||
# so move it to the right place for the rest of the process.
|
# so move it to the right place for the rest of the process.
|
||||||
mv build/build/nheko.app build
|
( cd build || exit
|
||||||
# get rid of the extra build directory
|
unzip nheko.zip
|
||||||
rm -r build/build
|
)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "build/nheko.app" ]; then
|
if [ ! -d "build/nheko.app" ]; then
|
||||||
echo "nheko.app is missing, you did something wrong!"
|
echo "nheko.app is missing, you did something wrong!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue