Skip to content

Instantly share code, notes, and snippets.

View Klubuntu's full-sized avatar
💡
Thinking about Your future OS

Kamil Klubuntu Klubuntu

💡
Thinking about Your future OS
View GitHub Profile
@Klubuntu
Klubuntu / build.sh
Last active September 22, 2023 17:27 — forked from DemwE/build.sh
Build release for Tauri Apps support Windows, Linux, MacOS
#!/bin/bash
if [ ! -f build.conf ]; then
echo "File build.conf does not exist, creating it."
echo "UpdateRustTargets=true" >>build.conf
echo "BuildWindows=true" >>build.conf
echo "BuildLinux=true" >>build.conf
echo "BuildMac=true" >>build.conf
exit 0
fi