mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Change bash variable check
This commit is contained in:
parent
00885e41f8
commit
08dbdac3b7
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ do
|
||||||
done;
|
done;
|
||||||
|
|
||||||
QMLFORMAT_PATH=$(which qmlformat)
|
QMLFORMAT_PATH=$(which qmlformat)
|
||||||
if [ ! -z "$QMLFORMAT_PATH" ]; then
|
if [ -n "$QMLFORMAT_PATH" ]; then
|
||||||
QML_FILES=$(find resources -type f -iname "*.qml")
|
QML_FILES=$(find resources -type f -iname "*.qml")
|
||||||
|
|
||||||
for f in $QML_FILES
|
for f in $QML_FILES
|
||||||
|
|
Loading…
Reference in a new issue