Skip to content

Instantly share code, notes, and snippets.

@M4rtinK
Last active June 5, 2023 12:16
Show Gist options
  • Save M4rtinK/333a299b7ecbfab1e01ae4a923ccf9ed to your computer and use it in GitHub Desktop.
Save M4rtinK/333a299b7ecbfab1e01ae4a923ccf9ed to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "### CLEANING UP ###"
rm -rf anaconda/ui/webui/bots
rm -rf anaconda/ui/webui/node_modules
rm -rf anaconda/ui/webui/dist
rm -rf anaconda/result
rm -f anaconda/ui/webui/package-lock.json
echo "### BUILDING ANACONDA ###"
cd anaconda
./autogen.sh;./configure;make;make rpms
echo "### PREPARING WEBUI ###"
cd ui/webui
make bots
./bots/image-download fedora-rawhide-boot
make create-updates.img
echo "### DONE ###"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment