1
0
forked from extern/nix-config

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:
Donovan Glover 2018-11-13 13:38:32 -05:00
parent 8b9ed3f623
commit e86ad95cd6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

13
.fedora/bootstrap.sh Executable file
View 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