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
@DemwE
DemwE / build.sh
Last active September 12, 2023 13:37
Build release of rust app for 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