12 lines
130 B
Bash
Executable file
12 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
if ! [ -d acme-onem2m ]
|
|
then ./setup.sh
|
|
fi
|
|
|
|
|
|
cd acme-onem2m
|
|
python3 -m acme
|