mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-16 02:40:38 +00:00
17 lines
268 B
Bash
Executable File
17 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
user_input=$1
|
|
|
|
if [[ $user_input == "install" ]]; then
|
|
nix-build default.nix
|
|
nix-env -i ./result
|
|
fi
|
|
if [[ $user_input == "compile" ]]; then
|
|
./scripts/build.sh
|
|
fi
|
|
if [[ $user_input == "clear" ]]; then
|
|
./scripts/clear.sh
|
|
fi
|