mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 13:09:00 +00:00
12 lines
102 B
Bash
Executable File
12 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
pushd $(dirname $0)
|
|
|
|
cp -r template/conf .
|
|
mkdir -p model logs db samples
|
|
|
|
|
|
popd
|