Skip to content

Commit bfe29e6

Browse files
committed
Include neutralino check in updater.sh
Preparation for #203
1 parent e0f3f7e commit bfe29e6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ typings/
104104
.tern-port
105105

106106
.idea/
107-
benchmark/01-empty-app/nw.js/cache/
108107

108+
# Lib-specific folders
109+
benchmark/01-empty-app/nw.js/cache/
109110
benchmark/02-empty-app-frameless/nw.js/cache/
111+
112+
benchmark/01-empty-app/neutralinojs/.tmp/
113+
benchmark/02-empty-app-frameless/neutralinojs/.tmp/

benchmark/updater.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ function updateDeps() {
2626
git commit -m "[$benchmark] [$framework] Update tauri dependencies"
2727
fi
2828

29+
if [ -f "bin/neutralino-win_x64.exe" ]; then
30+
echo "Detected neutralino files, checking version ..."
31+
npm install -g @neutralinojs/neu@latest
32+
neu update --latest
33+
git add .
34+
git commit -m "[$benchmark] [$framework] Updated neutralinojs"
35+
fi
36+
2937
git clean -xdf
3038
}
3139

0 commit comments

Comments
 (0)