mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-10 18:48:34 +02:00
fedora: Add bootstrap script
Since Fedora by default does not include all the dependencies required to run the Makefile, we install them first.
This commit is contained in:
parent
8b9ed3f623
commit
e86ad95cd6
13
.fedora/bootstrap.sh
Executable file
13
.fedora/bootstrap.sh
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# End the script on any errors
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Change the working directory to this one
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
sudo dnf install -y make fedpkg
|
||||||
|
|
||||||
|
# Run make
|
||||||
|
make
|
Loading…
Reference in New Issue
Block a user