mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
14 lines
292 B
Bash
14 lines
292 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Install dependencies, for example make!
|
||
|
scripts/install_ubuntu_dependencies.sh
|
||
|
|
||
|
# Make git happy
|
||
|
git config --global --add safe.directory /root/kanidm
|
||
|
|
||
|
echo "To launch a deb build, try:"
|
||
|
echo "make -f ./platform/debian/Makefile debs/kanidm"
|
||
|
|
||
|
# Launch shell
|
||
|
exec /bin/bash "$@"
|