mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-16 04:24:56 +02:00
16 lines
268 B
Bash
Executable file
16 lines
268 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $0 <install path>"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_DIR=$1
|
|
|
|
echo "Installing application in: $INSTALL_DIR"
|
|
|
|
mkdir -p "$INSTALL_DIR"/{bin,logs}
|
|
|
|
make -e DESTDIR=$INSTALL_DIR PREFIX= CFGDIR= install install-scripts
|
|
|
|
echo "Done"
|