mirror of https://github.com/perkeep/perkeep.git
10 lines
151 B
Bash
10 lines
151 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
Bin=$(dirname $( readlink -f $0))
|
||
|
|
||
|
cd $Bin
|
||
|
echo "Running camweb in $Bin"
|
||
|
../build.pl website && ./camweb --http=:8080 --root=$Bin
|